fdisk: fix check_alignment()

The old version of check_alignment() does not work with extended
partitions.

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2010-02-09 10:32:29 +01:00
parent 2b9e638a0f
commit 1d07e336ca
1 changed files with 5 additions and 5 deletions

View File

@ -1800,9 +1800,9 @@ static void check_consistency(struct partition *p, int partition) {
}
static void
check_alignment(struct partition *p, int partition)
check_alignment(unsigned long long lba, int partition)
{
if (!lba_is_aligned(get_start_sect(p)))
if (!lba_is_aligned(lba))
printf(_("Partition %i does not start on optimal I/O size boundary.\n"),
partition + 1);
}
@ -2042,7 +2042,7 @@ list_table(int xtra) {
/* type name */ (type = partition_type(p->sys_ind)) ?
type : _("Unknown"));
check_consistency(p, i);
check_alignment(p, i);
check_alignment(get_partition_start(pe), i);
}
}
@ -2077,7 +2077,7 @@ x_list_table(int extend) {
(unsigned long) get_nr_sects(p), p->sys_ind);
if (p->sys_ind) {
check_consistency(p, i);
check_alignment(p, i);
check_alignment(get_partition_start(pe), i);
}
}
}
@ -2155,7 +2155,7 @@ verify(void) {
p = pe->part_table;
if (p->sys_ind && !IS_EXTENDED (p->sys_ind)) {
check_consistency(p, i);
check_alignment(p, i);
check_alignment(get_partition_start(pe), i);
if (get_partition_start(pe) < first[i])
printf(_("Warning: bad start-of-data in "
"partition %d\n"), i + 1);