search for: test_blkid_p_i_opt

Displaying 7 results from an estimated 7 matches for "test_blkid_p_i_opt".

2012 Jan 24
14
[PATCH 00/14] Run the daemon under valgrind and fix resultant errors.
This patch series lets you run the daemon under valgrind. Many errors were found and fixed. With the complete series applied, valgrind doesn't show any errors.
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
..."blkid", + str_blkid, /* Adding -c option kills all caching, even on RHEL 5. */ "-c", "/dev/null", "-o", "value", "-s", tag, device, NULL); @@ -96,7 +98,7 @@ test_blkid_p_i_opt (void) int r; char *err; - r = commandr (NULL, &err, "blkid", "-p", "/dev/null", NULL); + r = commandr (NULL, &err, str_blkid, "-p", "/dev/null", NULL); if (r == -1) { /* This means we couldn't run the blkid command at...
2012 Aug 30
1
[PATCH] collect list of called external commands
..."blkid", + str_blkid, /* Adding -c option kills all caching, even on RHEL 5. */ "-c", "/dev/null", "-o", "value", "-s", tag, device, NULL); @@ -96,7 +98,7 @@ test_blkid_p_i_opt (void) int r; char *err; - r = commandr (NULL, &err, "blkid", "-p", "/dev/null", NULL); + r = commandr (NULL, &err, str_blkid, "-p", "/dev/null", NULL); if (r == -1) { /* This means we couldn't run the blkid command at...
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
...str_blkid, + "blkid", /* Adding -c option kills all caching, even on RHEL 5. */ "-c", "/dev/null", "-o", "value", "-s", tag, device, NULL); @@ -107,7 +105,7 @@ test_blkid_p_i_opt (void) int r; CLEANUP_FREE char *err = NULL, *err2 = NULL; - r = commandr (NULL, &err, str_blkid, "-p", "/dev/null", NULL); + r = commandr (NULL, &err, "blkid", "-p", "/dev/null", NULL); if (r == -1) { /* This means we coul...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
...str_blkid, + "blkid", /* Adding -c option kills all caching, even on RHEL 5. */ "-c", "/dev/null", "-o", "value", "-s", tag, device, NULL); @@ -107,7 +107,7 @@ test_blkid_p_i_opt (void) int r; CLEANUP_FREE char *err = NULL, *err2 = NULL; - r = commandr (NULL, &err, str_blkid, "-p", "/dev/null", NULL); + r = commandr (NULL, &err, "blkid", "-p", "/dev/null", NULL); if (r == -1) { /* This means we coul...
2017 Jul 27
3
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
This is a simpler patch that removes GUESTFSD_EXT_CMD completely.
2017 Jul 24
6
[PATCH 0/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
Replace GUESTFSD_EXT_CMD with a command line option ‘./guestfsd --print-external-commands’