Message ID | 20240513064700.88178-1-merqqcury@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | md: Reduce flag condition | expand |
diff --git a/drivers/md/dm-kcopyd.c b/drivers/md/dm-kcopyd.c index 6ea75436a..7a21875b1 100644 --- a/drivers/md/dm-kcopyd.c +++ b/drivers/md/dm-kcopyd.c @@ -817,8 +817,7 @@ void dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from, /* * If we need to write sequentially, errors cannot be ignored. */ - if (job->flags & BIT(DM_KCOPYD_WRITE_SEQ) && - job->flags & BIT(DM_KCOPYD_IGNORE_ERROR)) + if (job->flags & BIT(DM_KCOPYD_WRITE_SEQ)) job->flags &= ~BIT(DM_KCOPYD_IGNORE_ERROR); if (from) {
Clear DM_COPYD_IGNORE_ERROR will have no effect regardless of whether it is set in the flags. Therefore, this patch reduces one conditional check. Signed-off-by: Tse-Chia.Chang <merqqcury@gmail.com> --- drivers/md/dm-kcopyd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)