raid6check.c: fix position printout

This patch make a bit more clear
the position, in the disk, where
an error is found.

Signed off: piergiorgio.sartor@nexgo.de

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
Piergiorgio Sartor 2014-02-01 17:39:27 +01:00 committed by NeilBrown
parent 15c1bfb34c
commit afc755e9a6
1 changed files with 2 additions and 2 deletions

View File

@ -245,11 +245,11 @@ int check_stripes(struct mdinfo *info, int *source, unsigned long long *offsets,
disk[j] = geo_map(disk[j], start, raid_disks, level, layout);
}
if(disk[j] >= 0) {
printf("Error detected at %llu, page %d: possible failed disk slot: %d --> %s\n",
printf("Error detected at stripe %llu, page %d: possible failed disk slot: %d --> %s\n",
start, j, disk[j], name[disk[j]]);
}
if(disk[j] == -65535) {
printf("Error detected at %llu, page %d: disk slot unknown\n", start, j);
printf("Error detected at stripe %llu, page %d: disk slot unknown\n", start, j);
}
}