search for: guestfs_part_add

Displaying 9 results from an estimated 9 matches for "guestfs_part_add".

2009 Nov 10
0
ANNOUNCE: libguestfs 1.0.78 released
...r huge (multi-exabyte) sparse virtual disks: http://rwmj.wordpress.com/2009/11/04/petabytes-exabytes-why-not/ http://git.et.redhat.com/?p=libguestfs.git;a=commit;h=5ce72e039ca332ba19bb9122b7c93d257e745bb5 - New partitioning API, supports GPT and more: http://libguestfs.org/guestfs.3.html#guestfs_part_add http://git.et.redhat.com/?p=libguestfs.git;a=commit;h=b1e1ca2f74a921b3f784537d59c617df29ea1d60 - New tool: virt-ls http://rwmj.wordpress.com/2009/10/19/new-tool-virt-ls/ - New tool: virt-tar http://rwmj.wordpress.com/2009/10/19/new-tool-virt-tar/ - New tool: virt-edit http://rwmj....
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.
2017 Apr 20
1
[PATCH] tests: Replace test-max-disks with several tests.
...and 1 partition to every other disk. Note + * that 15 partitions is the max allowed by virtio-blk. + */ + if (i == 0 || i == ndisks-1) { + if (guestfs_part_init (g, devices[i], "gpt") == -1) + exit (EXIT_FAILURE); + for (j = 1; j <= 14; ++j) { + if (guestfs_part_add (g, devices[i], "p", 64*j, 64*j+63) == -1) + exit (EXIT_FAILURE); + } + if (guestfs_part_add (g, devices[i], "p", 64*15, -64) == -1) + exit (EXIT_FAILURE); + if (asprintf (&part, "%s15", devices[i]) == -1) + error (EXIT_FAILURE...
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...- deprecated_by = Some "part_add"; + deprecated_by = Replaced_by "part_add"; shortdesc = "modify a single partition on a block device"; longdesc = "\ This runs L<sfdisk(8)> option to modify just the single @@ -299,7 +299,7 @@ See also: C<guestfs_part_add>" }; { defaults with name = "sfdisk_l"; added = (1, 0, 26); style = RString "partitions", [Device "device"], []; - deprecated_by = Some "part_list"; + deprecated_by = Replaced_by "part_list"; shortdesc = "display...
2017 May 04
4
[PATCH 0/3] generator: Allow returned strings to be annotated as devices.
If we want to permit more than 255 drives to be added, then we will have to add the disks to the same virtio-scsi target using different unit (LUN) numbers. Unfortunately SCSI LUN enumeration in the Linux is not deterministic (eg. two disks with target=0, lun=[0,1] can be enumerated as /dev/sda or /dev/sdb randomly). Dealing with that will require some very complex device name translation on the
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...String "line"], []; + String (PlainString, "line")], []; deprecated_by = Replaced_by "part_add"; shortdesc = "modify a single partition on a block device"; longdesc = "\ @@ -298,7 +298,7 @@ See also: C<guestfs_part_add>" }; { defaults with name = "sfdisk_l"; added = (1, 0, 26); - style = RString "partitions", [Device "device"], []; + style = RString "partitions", [String (Device, "device")], []; deprecated_by = Replaced_by "part_l...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.