search for: do_resize2fs_size

Displaying 8 results from an estimated 8 matches for "do_resize2fs_size".

2011 Jan 14
0
Patch. not working
...ed version of this patch upstream: http://git.annexia.org/?p=libguestfs.git;a=commitdiff;h=4ffa2d6798f7a2bf0baec8e1084659cf6358bc31 Rich. > diff --git a/daemon/ext2.c b/daemon/ext2.c > index 725352e..85ce316 100644 > --- a/daemon/ext2.c > +++ b/daemon/ext2.c > @@ -266,6 +266,27 @@ do_resize2fs_size (const char *device, int64_t size) > } > > int > +do_resize2fs_M (const char *device) > +{ > + char *err; > + int r; > + > + char prog[] = "resize2fs"; > + if (e2prog (prog) == -1) > + return -1; > + > + r = command (NULL, &err, prog,...
2012 Mar 09
5
[PATCH 0/5] Fixes to resize2fs (RHBZ#755729, RHBZ#801640)
https://bugzilla.redhat.com/show_bug.cgi?id=755729 This bug reports that the error message printed by the resize2fs API calls (which comes directly from the resize2fs command) says: Please run 'e2fsck -f /dev/vda1' first. That command is not possible from guestfish (where it would be 'e2fsck-f' or 'e2fsck ... forceall:true'). Fixing that bug caused this bug:
2012 Aug 30
1
[PATCH] collect list of called external commands
...return -1; if (if_not_mounted_run_e2fsck (device) == -1) return -1; - r = command (NULL, &err, prog, device, NULL); + r = command (NULL, &err, str_resize2fs, device, NULL); if (r == -1) { reply_with_error ("%s", err); free (err); @@ -244,8 +248,7 @@ do_resize2fs_size (const char *device, int64_t size) char *err; int r; - char prog[] = "resize2fs"; - if (e2prog (prog) == -1) + if (e2prog (str_resize2fs) == -1) return -1; /* resize2fs itself may impose additional limits. Since we are @@ -265,7 +268,7 @@ do_resize2fs_size (const cha...
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
...if (if_not_mounted_run_e2fsck (device) == -1) return -1; - r = command (NULL, &err, "resize2fs", device, NULL); + r = command (NULL, &err, str_resize2fs, device, NULL); if (r == -1) { reply_with_error ("%s", err); free (err); @@ -219,7 +226,7 @@ do_resize2fs_size (const char *device, int64_t size) char buf[32]; snprintf (buf, sizeof buf, "%" PRIi64 "K", size); - r = command (NULL, &err, "resize2fs", device, buf, NULL); + r = command (NULL, &err, str_resize2fs, device, buf, NULL); if (r == -1) { reply_w...
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
...) if (if_not_mounted_run_e2fsck (device) == -1) return -1; - r = command (NULL, &err, str_resize2fs, device, NULL); + r = command (NULL, &err, "resize2fs", device, NULL); if (r == -1) { reply_with_error ("%s", err); return -1; @@ -247,7 +239,7 @@ do_resize2fs_size (const char *device, int64_t size) char buf[32]; snprintf (buf, sizeof buf, "%" PRIi64 "K", size); - r = command (NULL, &err, str_resize2fs, device, buf, NULL); + r = command (NULL, &err, "resize2fs", device, buf, NULL); if (r == -1) { reply_w...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
...) if (if_not_mounted_run_e2fsck (device) == -1) return -1; - r = command (NULL, &err, str_resize2fs, device, NULL); + r = command (NULL, &err, "resize2fs", device, NULL); if (r == -1) { reply_with_error ("%s", err); return -1; @@ -247,7 +242,7 @@ do_resize2fs_size (const char *device, int64_t size) char buf[32]; snprintf (buf, sizeof buf, "%" PRIi64 "K", size); - r = command (NULL, &err, str_resize2fs, device, buf, NULL); + r = command (NULL, &err, "resize2fs", device, buf, NULL); if (r == -1) { reply_w...
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’