X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=resize%2Fresize.ml;h=fecc1eb445b13e427a955cfdac769e4a9a64ce63;hb=f6db819081a47b038d473cc1c1fd9743410c42a9;hp=1bd9632b4dcce53bf4399e5f11b739c46a82587b;hpb=09a7545649e6cac0de2c4421cb64b659164174ee;p=libguestfs.git diff --git a/resize/resize.ml b/resize/resize.ml index 1bd9632..fecc1eb 100644 --- a/resize/resize.ml +++ b/resize/resize.ml @@ -144,6 +144,7 @@ read the man page virt-resize(1). printf "virt-resize\n"; printf "ntfsresize-force\n"; printf "32bitok\n"; + printf "128-sector-alignment\n"; let g = new G.guestfs () in g#add_drive_opts "/dev/null"; g#launch (); @@ -563,7 +564,7 @@ let calculate_surplus () = let nr_partitions = List.length partitions in let overhead = (Int64.of_int sectsize) *^ ( 2L *^ 64L +^ (* GPT start and end *) - (64L *^ (Int64.of_int (nr_partitions + 1))) (* Maximum alignment *) + (128L *^ (Int64.of_int (nr_partitions + 1))) (* Maximum alignment *) ) +^ (Int64.of_int (max_bootloader - 64 * 512)) in (* Bootloader *) @@ -852,7 +853,7 @@ let () = if !nextpart = 4 then ( g#part_add "/dev/sdb" "extended" !start (-1L); incr nextpart; - start := !start +^ 64L + start := !start +^ 128L ); let target_partnum = !nextpart in let end_ = !start +^ size -^ 1L in @@ -861,8 +862,8 @@ let () = target_partnum, end_ ) in - (* Start of next partition + alignment to 64 sectors. *) - start := ((end_ +^ 1L) +^ 63L) &^ (~^ 63L); + (* Start of next partition + alignment to 128 sectors. *) + start := ((end_ +^ 1L) +^ 127L) &^ (~^ 127L); target_partnum in