git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
261622b
)
daemon: Kill blkid cache to improve reliability of blkid commands.
author
Richard Jones
<rjones@redhat.com>
Tue, 1 Jun 2010 14:27:57 +0000
(15:27 +0100)
committer
Richard Jones
<rjones@redhat.com>
Wed, 2 Jun 2010 18:39:37 +0000
(19:39 +0100)
By killing the cache file, we make blkid work in situations such
as a just-created filesystem.
(cherry picked from commit
21c42e9fabf6cea3d564e338a314479ef120502a
)
daemon/blkid.c
patch
|
blob
|
history
diff --git
a/daemon/blkid.c
b/daemon/blkid.c
index
1ddc8cd
..
a619730
100644
(file)
--- a/
daemon/blkid.c
+++ b/
daemon/blkid.c
@@
-33,6
+33,13
@@
get_blkid_tag (const char *device, const char *tag)
char *out, *err;
int r;
+ /* Kill the cache file, forcing blkid to reread values from the
+ * original filesystems. In blkid there is a '-p' option which is
+ * supposed to do this, but (a) it doesn't work and (b) that option
+ * is not supported in RHEL 5.
+ */
+ unlink ("/etc/blkid/blkid.tab");
+
r = command (&out, &err,
"blkid", "-o", "value", "-s", tag, device, NULL);
if (r == -1) {