[PATCH] md: Reduce flag condition

From: Tse-Chia.Chang
Date: Mon May 13 2024 - 02:48:28 EST


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@xxxxxxxxx>
---
drivers/md/dm-kcopyd.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

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) {
--
2.34.1