Commit e3914d59 authored by Guoqing Jiang's avatar Guoqing Jiang Committed by Song Liu

md/raid5: remove the redundant setting of STRIPE_HANDLE

The flag is already set before compare rcw with rmw, so it is
not necessary to do it again.
Signed-off-by: default avatarGuoqing Jiang <guoqing.jiang@cloud.ionos.com>
Signed-off-by: default avatarSong Liu <songliubraving@fb.com>
parent ec164d07
...@@ -3995,10 +3995,8 @@ static int handle_stripe_dirtying(struct r5conf *conf, ...@@ -3995,10 +3995,8 @@ static int handle_stripe_dirtying(struct r5conf *conf,
set_bit(R5_LOCKED, &dev->flags); set_bit(R5_LOCKED, &dev->flags);
set_bit(R5_Wantread, &dev->flags); set_bit(R5_Wantread, &dev->flags);
s->locked++; s->locked++;
} else { } else
set_bit(STRIPE_DELAYED, &sh->state); set_bit(STRIPE_DELAYED, &sh->state);
set_bit(STRIPE_HANDLE, &sh->state);
}
} }
} }
} }
...@@ -4023,10 +4021,8 @@ static int handle_stripe_dirtying(struct r5conf *conf, ...@@ -4023,10 +4021,8 @@ static int handle_stripe_dirtying(struct r5conf *conf,
set_bit(R5_Wantread, &dev->flags); set_bit(R5_Wantread, &dev->flags);
s->locked++; s->locked++;
qread++; qread++;
} else { } else
set_bit(STRIPE_DELAYED, &sh->state); set_bit(STRIPE_DELAYED, &sh->state);
set_bit(STRIPE_HANDLE, &sh->state);
}
} }
} }
if (rcw && conf->mddev->queue) if (rcw && conf->mddev->queue)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment