search for: blkprobe

Displaying 1 result from an estimated 1 matches for "blkprobe".

Did you mean: __kprobe
2012 Feb 14
1
[PATCH RFC] blkid: start using libblkid directly instead
...include <fcntl.h> +#include <blkid/blkid.h> #include "daemon.h" #include "actions.h" @@ -30,40 +32,37 @@ static char * get_blkid_tag (const char *device, const char *tag) { - char *out, *err; - int r; + int fd, rc; + const char *data = NULL; + blkid_probe blkprobe; - r = commandr (&out, &err, - "blkid", - /* Adding -c option kills all caching, even on RHEL 5. */ - "-c", "/dev/null", - "-o", "value", "-s", tag, device, NULL); - i...