[Libguestfs] [PATCH 1/4] daemon: Generalize the implementation of vfs-type.

Richard W.M. Jones rjones at redhat.com
Tue Jun 1 14:36:47 UTC 2010


-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-p2v converts physical machines to virtual machines.  Boot with a
live CD or over the network (PXE) and turn machines into Xen guests.
http://et.redhat.com/~rjones/virt-p2v
-------------- next part --------------
>From 85c71f8fff3e80f549342bf995b686ba7303c2b4 Mon Sep 17 00:00:00 2001
From: Richard Jones <rjones at redhat.com>
Date: Tue, 1 Jun 2010 13:39:25 +0100
Subject: [PATCH 1/4] daemon: Generalize the implementation of vfs-type.

Note that there is no change to the semantics of the code.
---
 daemon/blkid.c |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/daemon/blkid.c b/daemon/blkid.c
index dcfac65..1ddc8cd 100644
--- a/daemon/blkid.c
+++ b/daemon/blkid.c
@@ -27,14 +27,14 @@
 #include "daemon.h"
 #include "actions.h"
 
-char *
-do_vfs_type (const char *device)
+static char *
+get_blkid_tag (const char *device, const char *tag)
 {
   char *out, *err;
   int r;
 
   r = command (&out, &err,
-               "blkid", "-o", "value", "-s", "TYPE", device, NULL);
+               "blkid", "-o", "value", "-s", tag, device, NULL);
   if (r == -1) {
     reply_with_error ("%s: %s", device, err);
     free (out);
@@ -51,3 +51,9 @@ do_vfs_type (const char *device)
 
   return out;                   /* caller frees */
 }
+
+char *
+do_vfs_type (const char *device)
+{
+  return get_blkid_tag (device, "TYPE");
+}
-- 
1.6.6.1



More information about the Libguestfs mailing list