2023-03-11 09:30:05

by Richard Weinberger

[permalink] [raw]
Subject: [PATCH] ubi: block: Fix missing blk_mq_end_request

Switching to BLK_MQ_F_BLOCKING wrongly removed the call to
blk_mq_end_request(). Add it back to have our IOs finished

Cc: Daniel Palmer <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Fixes: 91cc8fbcc8c7 ("ubi: block: set BLK_MQ_F_BLOCKING")
Analyzed-by: Linus Torvalds <[email protected]>
Reported-by: Daniel Palmer <[email protected]>
Link: https://lore.kernel.org/linux-mtd/CAHk-=wi29bbBNh3RqJKu3PxzpjDN5D5K17gEVtXrb7-6bfrnMQ@mail.gmail.com/
Signed-off-by: Richard Weinberger <[email protected]>
---
drivers/mtd/ubi/block.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c
index 1de87062c67b..3711d7f74600 100644
--- a/drivers/mtd/ubi/block.c
+++ b/drivers/mtd/ubi/block.c
@@ -221,7 +221,10 @@ static blk_status_t ubiblock_read(struct request *req)

rq_for_each_segment(bvec, req, iter)
flush_dcache_page(bvec.bv_page);
- return errno_to_blk_status(ret);
+
+ blk_mq_end_request(req, errno_to_blk_status(ret));
+
+ return BLK_STS_OK;
}

static int ubiblock_open(struct block_device *bdev, fmode_t mode)
--
2.26.2



2023-03-11 10:37:33

by Daniel Palmer

[permalink] [raw]
Subject: Re: [PATCH] ubi: block: Fix missing blk_mq_end_request

Hi Richard,

On Sat, 11 Mar 2023 at 18:29, Richard Weinberger <[email protected]> wrote:
>
> Switching to BLK_MQ_F_BLOCKING wrongly removed the call to
> blk_mq_end_request(). Add it back to have our IOs finished

Machine is booting again. Thanks!

Tested-by: Daniel Palmer <[email protected]>

Cheers,

Daniel

---

Sorry if this e-mail doesn't get to the mailing lists. gmail is doing
something wonky and sending e-mails with HTML even with plain text
selected.
The original report bounced for a bunch of recipients due to that.
Guess I'm setting up a better mail client at some point..

2023-03-11 12:40:43

by Christoph Hellwig

[permalink] [raw]
Subject: Re: [PATCH] ubi: block: Fix missing blk_mq_end_request

Looks good:

Reviewed-by: Christoph Hellwig <[email protected]>

2023-03-11 17:01:49

by Linus Torvalds

[permalink] [raw]
Subject: Re: [PATCH] ubi: block: Fix missing blk_mq_end_request

On Sat, Mar 11, 2023 at 1:29 AM Richard Weinberger <[email protected]> wrote:
>
> Switching to BLK_MQ_F_BLOCKING wrongly removed the call to
> blk_mq_end_request(). Add it back to have our IOs finished

Applied,

Linus