svn commit: r230343 - stable/8/sys/geom/part
Ed Maste
emaste at FreeBSD.org
Fri Jan 20 00:20:01 UTC 2012
Author: emaste
Date: Fri Jan 20 00:20:00 2012
New Revision: 230343
URL: http://svn.freebsd.org/changeset/base/230343
Log:
MFC r216269:
Don't warn if a partition appears not to be aligned on a track boundary.
Modern disks use LBA and create a fake CHS geometry that doesn't have any
relation to the on-disk layout of data.
Modified:
stable/8/sys/geom/part/g_part_mbr.c
Directory Properties:
stable/8/sys/ (props changed)
Modified: stable/8/sys/geom/part/g_part_mbr.c
==============================================================================
--- stable/8/sys/geom/part/g_part_mbr.c Thu Jan 19 23:16:23 2012 (r230342)
+++ stable/8/sys/geom/part/g_part_mbr.c Fri Jan 20 00:20:00 2012 (r230343)
@@ -461,12 +461,6 @@ g_part_mbr_read(struct g_part_table *bas
basetable->gpt_heads = heads;
}
}
- if ((ent.dp_start % basetable->gpt_sectors) != 0)
- printf("GEOM: %s: partition %d does not start on a "
- "track boundary.\n", pp->name, index + 1);
- if ((ent.dp_size % basetable->gpt_sectors) != 0)
- printf("GEOM: %s: partition %d does not end on a "
- "track boundary.\n", pp->name, index + 1);
entry = (struct g_part_mbr_entry *)g_part_new_entry(basetable,
index + 1, ent.dp_start, ent.dp_start + ent.dp_size - 1);
More information about the svn-src-stable-8
mailing list