search for: c6b4

Displaying 5 results from an estimated 5 matches for "c6b4".

Did you mean: c64
2009 Mar 03
0
HEADS UP: iSCSI, zvol, and vdisk format support
...rted are: phy:iscsi:/alias/<iscsi-alias> phy:iscsi:/static/<server IP>/<lun>/<target id> phy:iscsi:/discover/<lun>/<alias or target id> i.e. for the following iscsi disk: bash-3.2# iscsiadm list target -S Target: iqn.1986-03.com.sun:02:d5ab1c26-0a7a-c6b4-98f8-d6d267eb2561 Alias: tank/iscsi/nevada/disk0 TPGT: 1 ISID: 4000002a0000 Connections: 1 LUN: 0 Vendor: SUN Product: SOLARIS OS Device Name: /dev/rdsk/c2t600144F0499C09B800001A4D4B643700d0s2 If your dom0 is s...
2011 Dec 22
1
[PATCH] blkid: remove the -o export option
..."-i", device, NULL); if (r == -1) { reply_with_error("%s", err); goto error; @@ -132,7 +132,7 @@ blkid_with_p_opt(const char *device) goto error; } - /* Parse the output of blkid -p -i -o export: + /* Parse the output of blkid -p -i: * UUID=b6d83437-c6b4-4bf0-8381-ef3fc3578590 * VERSION=1.0 * TYPE=ext2 -- 1.7.8
2011 Dec 03
1
[PATCH] NEW API: add blkid command to print the attributes of the device
...reply_with_error("%s", err); + goto error; + } + + /* Split the command output into lines */ + lines = split_lines(out); + if (lines == NULL) { + reply_with_perror("malloc"); + goto error; + } + + /* Parse the output of blkid -p -i -o export: + * UUID=b6d83437-c6b4-4bf0-8381-ef3fc3578590 + * VERSION=1.0 + * TYPE=ext2 + * USAGE=filesystem + * MINIMUM_IO_SIZE=512 + * PHYSICAL_SECTOR_SIZE=512 + * LOGICAL_SECTOR_SIZE=512 + * PART_ENTRY_SCHEME=dos + * PART_ENTRY_TYPE=0x83 + * PART_ENTRY_NUMBER=6 + * PART_ENTRY_OFFSET=642875153 + * PART_ENTRY_...
2016 Jul 07
0
[PATCH 2/2] daemon: fix cleanup of stringsbuf usages
...== -1) { reply_with_error ("%s", err); - goto error; + return NULL; } /* Split the command output into lines */ lines = split_lines (out); if (lines == NULL) - goto error; + return NULL; /* Parse the output of blkid -p -i -o export: * UUID=b6d83437-c6b4-4bf0-8381-ef3fc3578590 @@ -181,54 +181,44 @@ blkid_with_p_i_opt (const char *device) /* Add the key/value pair to the output */ if (add_string (&ret, line) == -1 || - add_string (&ret, eq) == -1) goto error; + add_string (&ret, eq) == -1) return NULL;...
2016 Jul 07
2
[PATCH 1/2] daemon: free the string on stringsbuf add failure
If add_string_nodup fails free the passed string instead of leaking it, as that string would have been owned by the stringbuf. Adapt few places to this behaviour. --- daemon/btrfs.c | 4 +--- daemon/devsparts.c | 8 ++++---- daemon/guestfsd.c | 1 + 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/daemon/btrfs.c b/daemon/btrfs.c index 9b52aa8..d70565a 100644 ---