search for: 82ef30093

Displaying 4 results from an estimated 4 matches for "82ef30093".

2018 Jun 14
1
lib: Convert all drive socket parameters to an absolute path
One interesting omission is that we don't allow sockets in the abstract namespace. The API won't let you pass these sockets because they contain a '\0' character in the middle of the string. Therefore this patch doesn't need to deal with those. However we should in future allow that, probably using the '@' character to stand in for the NUL byte, as is used in a few
2019 Sep 07
0
[PATCH] drives: Typo fix
...om> --- I don't have push rights in libguestfs (yet?) Several .po files have the same typo, but I think they get updated mechanically, so I didn't bother to change them. lib/drives.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/drives.c b/lib/drives.c index 82ef30093..5a8d29ab4 100644 --- a/lib/drives.c +++ b/lib/drives.c @@ -1064,7 +1064,7 @@ guestfs_impl_remove_drive (guestfs_h *g, const char *label) /** * Checkpoint and roll back drives, so that groups of drives can be - * added atomicly. Only used by L<guestfs(3)/guestfs_add_domain>. + * added at...
2018 Jun 15
1
[PATCH v2] lib: Convert all drive socket parameters to an absolute path (RHBZ#1588451).
...ol/disk </dev/null >test-add-uri.out 2>&1 @@ -93,3 +100,4 @@ grep -sq 'add_drive "iqn.2015-12.com.libguestfs:test2/0" "protocol:iscsi" "serve rm test-add-uri.out rm test-add-uri.img +rm -f test-add-uri.sock diff --git a/lib/drives.c b/lib/drives.c index 82ef30093..7697f369a 100644 --- a/lib/drives.c +++ b/lib/drives.c @@ -28,6 +28,7 @@ #include <stdbool.h> #include <string.h> #include <unistd.h> +#include <limits.h> #include <netdb.h> #include <arpa/inet.h> #include <assert.h> @@ -645,7 +646,18 @@ parse_one_se...
2017 Sep 20
7
[PATCH v2] 0/6] Various clean ups in lib/
v1 -> v2: - Remove the unnecessary calls to guestfs_int_lazy_make_tmpdir in the final patch. Rich.