projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c069da4
)
md raid1: allow writebehind to work on any leg device set WriteMostly
author
Heinz Mauelshagen
<heinzm@redhat.com>
Mon, 14 Aug 2023 12:01:15 +0000
(14:01 +0200)
committer
Song Liu
<song@kernel.org>
Fri, 18 Aug 2023 04:11:31 +0000
(21:11 -0700)
As the WriteMostly flag can be set on any component device of a RAID1
array, remove the constraint that it only works if set on the first one.
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Tested-by: Xiao Ni <xni@redhat.com>
Link:
https://lore.kernel.org/r/2a9592bf3340f34bf588eec984b23ee219f3985e.1692013451.git.heinzm@redhat.com
Signed-off-by: Song Liu <song@kernel.org>
drivers/md/raid1.c
patch
|
blob
|
history
diff --git
a/drivers/md/raid1.c
b/drivers/md/raid1.c
index 56f2725a996ffc6fe6761a9bfc356612516455f5..4b30a174216232564cd88781d603d6ac5d7e5c95 100644
(file)
--- a/
drivers/md/raid1.c
+++ b/
drivers/md/raid1.c
@@
-1523,8
+1523,7
@@
static void raid1_write_request(struct mddev *mddev, struct bio *bio,
* Not if there are too many, or cannot
* allocate memory, or a reader on WriteMostly
* is waiting for behind writes to flush */
- if (bitmap &&
- test_bit(WriteMostly, &rdev->flags) &&
+ if (bitmap && write_behind &&
(atomic_read(&bitmap->behind_writes)
< mddev->bitmap_info.max_write_behind) &&
!waitqueue_active(&bitmap->behind_wait)) {