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

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
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -3995,10 +3995,8 @@ static int handle_stripe_dirtying(struct r5conf *conf,
					set_bit(R5_LOCKED, &dev->flags);
					set_bit(R5_Wantread, &dev->flags);
					s->locked++;
				} else {
				} else
					set_bit(STRIPE_DELAYED, &sh->state);
					set_bit(STRIPE_HANDLE, &sh->state);
				}
			}
		}
	}
@@ -4023,10 +4021,8 @@ static int handle_stripe_dirtying(struct r5conf *conf,
					set_bit(R5_Wantread, &dev->flags);
					s->locked++;
					qread++;
				} else {
				} else
					set_bit(STRIPE_DELAYED, &sh->state);
					set_bit(STRIPE_HANDLE, &sh->state);
				}
			}
		}
		if (rcw && conf->mddev->queue)