summaryrefslogtreecommitdiff
path: root/drivers/md/raid1.c
diff options
context:
space:
mode:
authorGou Hao <gouhao@uniontech.com>2023-12-14 23:14:58 +0800
committerSong Liu <song@kernel.org>2023-12-15 00:45:37 -0800
commitaf140f806ae2679f9dba48ea0f5811da83854eb6 (patch)
tree234d05d7b498671dbb3ed1d4c7d159a6ef02dec3 /drivers/md/raid1.c
parentfa2bbff7b0b4e211fec5e5686ef96350690597b5 (diff)
md/raid1: remove unnecessary null checking
If %__GFP_DIRECT_RECLAIM is set then bio_alloc_bioset will always be able to allocate a bio. See comment of bio_alloc_bioset. Signed-off-by: Gou Hao <gouhao@uniontech.com> Signed-off-by: Song Liu <song@kernel.org> Link: https://lore.kernel.org/r/20231214151458.28970-1-gouhao@uniontech.com
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r--drivers/md/raid1.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index 9348f1709512..19c9bf0060ae 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -1124,8 +1124,6 @@ static void alloc_behind_master_bio(struct r1bio *r1_bio,
behind_bio = bio_alloc_bioset(NULL, vcnt, 0, GFP_NOIO,
&r1_bio->mddev->bio_set);
- if (!behind_bio)
- return;
/* discard op, we don't support writezero/writesame yet */
if (!bio_has_data(bio)) {