md/raid5: fix init_stripe() inconsistencies
raid5: fix init_stripe() inconsistencies 1) remove_hash() is not necessary. We will only be called right after get_free_stripe(). There we have already a call to remove_hash(). 2) Tracing prints out the sector of the freed stripe and not the sector that we want to initialize. Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
Родитель
c4796e215f
Коммит
b8e6a15a1a
|
@ -531,9 +531,7 @@ static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
|
||||||
BUG_ON(stripe_operations_active(sh));
|
BUG_ON(stripe_operations_active(sh));
|
||||||
|
|
||||||
pr_debug("init_stripe called, stripe %llu\n",
|
pr_debug("init_stripe called, stripe %llu\n",
|
||||||
(unsigned long long)sh->sector);
|
(unsigned long long)sector);
|
||||||
|
|
||||||
remove_hash(sh);
|
|
||||||
retry:
|
retry:
|
||||||
seq = read_seqcount_begin(&conf->gen_lock);
|
seq = read_seqcount_begin(&conf->gen_lock);
|
||||||
sh->generation = conf->generation - previous;
|
sh->generation = conf->generation - previous;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче