summaryrefslogtreecommitdiffstats
path: root/shlibs/blkid/src/blkid.sym
diff options
context:
space:
mode:
authorKarel Zak2010-02-01 14:23:55 +0100
committerKarel Zak2010-02-01 14:23:55 +0100
commit49361dc4dca0a9079ee57a2a0d8833aabd93277b (patch)
tree064f47d2ba6e11ec9bf3b763726b8f07d97d70cd /shlibs/blkid/src/blkid.sym
parentlibblkid: add blkid_openat(), cleanup blkid_fstatat() (diff)
downloadkernel-qcow2-util-linux-49361dc4dca0a9079ee57a2a0d8833aabd93277b.tar.gz
kernel-qcow2-util-linux-49361dc4dca0a9079ee57a2a0d8833aabd93277b.tar.xz
kernel-qcow2-util-linux-49361dc4dca0a9079ee57a2a0d8833aabd93277b.zip
libblkid: add blkid_probe_all_removable()
The libblkid probing is based on devices from /proc/partitions by default. This file usually does not contain removable devices (e.g. CDROMs) and this kind of devices are invisible for libblkid. The blkid_probe_all_removable() function adds removable block devices to blkid cache. The probing is based on information from the /sys directory. The devices which were detected by this function won't be written to blkid.tab cache file. Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=533874 Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'shlibs/blkid/src/blkid.sym')
-rw-r--r--shlibs/blkid/src/blkid.sym8
1 files changed, 8 insertions, 0 deletions
diff --git a/shlibs/blkid/src/blkid.sym b/shlibs/blkid/src/blkid.sym
index 972555266..4d01aa201 100644
--- a/shlibs/blkid/src/blkid.sym
+++ b/shlibs/blkid/src/blkid.sym
@@ -114,3 +114,11 @@ global:
blkid_topology_get_optimal_io_size;
blkid_topology_get_physical_sector_size;
} BLKID_2.15;
+
+/*
+ * version(s) since util-linux-ng 2.18
+ */
+BLKID_2.18 {
+global:
+ blkid_probe_all_removable;
+} BLKID_2.17;