diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-05-29 10:41:07 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-05-29 10:41:07 -0700 |
| commit | 9215e74f228f2b239f41271da9e5076ee3439d1b (patch) | |
| tree | ef7bdb41e7588610ea8c6cc8d59709087cb50c59 | |
| parent | 80169db922c1bfb2947e901514e33165a64787c2 (diff) | |
| parent | b051bb6bf0a231117036aa607cadf55be8e63910 (diff) | |
| download | lwn-9215e74f228f2b239f41271da9e5076ee3439d1b.tar.gz lwn-9215e74f228f2b239f41271da9e5076ee3439d1b.zip | |
Merge tag 'block-7.1-20260529' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux
Pull block fix from Jens Axboe:
"Just a single fix for the block side, making a slight tweak to a fix
from this cycle"
* tag 'block-7.1-20260529' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux:
blk-mq: reinsert cached request to the list
| -rw-r--r-- | block/blk-mq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c index 28c2d931e75e..a24175441380 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -3246,7 +3246,7 @@ queue_exit: if (!rq) blk_queue_exit(q); else - blk_mq_free_request(rq); + rq_list_add_head(&plug->cached_rqs, rq); } #ifdef CONFIG_BLK_MQ_STACKING |
