[PATCH v4 0/2] Optimize r1conf->r1bio_pool
From: Wang Jinchao
Date: Mon Jun 30 2025 - 02:11:14 EST
The r1conf->r1bio_pool field was previously a struct,
which caused a bug after raid1_reshape.
These patch changes it to a pointer type
and removes struct pool_info and related code.
Wang Jinchao (2):
md/raid1: change r1conf->r1bio_pool to a pointer type
md/raid1: remove struct pool_info and related code
drivers/md/raid1.c | 82 ++++++++++++++++------------------------------
drivers/md/raid1.h | 22 +------------
2 files changed, 29 insertions(+), 75 deletions(-)
--
v1: Replace mempool_init() with mempool_create()
v2: Replace mempool_init() with mempool_create_kmalloc_pool()
v3: Fix checkpatch errors and a bug in calculating new_r1bio_size
v4: Remove unnecessary local variable used only once
--
2.43.0