Displaying 2 results from an estimated 2 matches for "26f77fd".
2017 Apr 28
2
[PATCH] common/options: Change drv struct to store drive index instead of device name.
...| 12 ++++++++----
format/format.c | 2 +-
fuse/guestmount.c | 2 +-
inspector/inspector.c | 2 +-
rescue/rescue.c | 3 +--
rescue/suggest.c | 2 +-
17 files changed, 42 insertions(+), 51 deletions(-)
diff --git a/align/scan.c b/align/scan.c
index 7ae8adf..26f77fd 100644
--- a/align/scan.c
+++ b/align/scan.c
@@ -236,7 +236,7 @@ main (int argc, char *argv[])
error (EXIT_FAILURE, 0, _("--uuid option cannot be used with -a or -d"));
/* Add domains/drives from the command line (for a single guest). */
- add_drives (drvs, 'a');...
2017 May 03
0
Re: [PATCH] common/options: Change drv struct to store drive index instead of device name.
...t_drive)’.
>
> This stores the device index instead, and only constructs the device
> name in guestfish. Also the device name is constructed properly using
> guestfs_int_drive_name so it can cope with #drives > 26.
> ---
Looks nice, a couple of notes below.
> index 7ae8adf..26f77fd 100644
> --- a/align/scan.c
> +++ b/align/scan.c
> @@ -236,7 +236,7 @@ main (int argc, char *argv[])
> error (EXIT_FAILURE, 0, _("--uuid option cannot be used with -a or -d"));
>
> /* Add domains/drives from the command line (for a single guest). */
> -...