X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fparted.c;h=0d229484276d677e9ccc27e89bda5004d09c4631;hb=d81c0829ea4a99aadb98df37be9543a973269041;hp=2b70fddda1767535661f2da1472fa61745da45b4;hpb=511c82df46f5c6f4a7f984fdb81d4691038ed6da;p=libguestfs.git diff --git a/daemon/parted.c b/daemon/parted.c index 2b70fdd..0d22948 100644 --- a/daemon/parted.c +++ b/daemon/parted.c @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -184,15 +184,16 @@ do_part_disk (const char *device, const char *parttype) return -1; } - /* Align all partitions created this way to 64 sectors, and leave - * the last 64 sectors at the end of the disk free. This wastes - * 32K+32K = 64K on 512-byte sector disks. The rationale is: + /* Align all partitions created this way to 128 sectors, and leave + * the last 128 sectors at the end of the disk free. This wastes + * 64K+64K = 128K on 512-byte sector disks. The rationale is: * * - aligned operations are faster + * - absolute minimum recommended alignment is 64K (1M would be better) * - GPT requires at least 34 sectors at the end of the disk. */ - const char *startstr = "64s"; - const char *endstr = "-64s"; + const char *startstr = "128s"; + const char *endstr = "-128s"; RUN_PARTED (return -1, device,