projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33566f9
)
bio: safeguard REQ_ALLOC_CACHE bio put
author
Pavel Begunkov
<asml.silence@gmail.com>
Tue, 18 Oct 2022 19:50:55 +0000
(20:50 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Thu, 20 Oct 2022 12:50:29 +0000
(
05:50
-0700)
bio_put() with REQ_ALLOC_CACHE assumes that it's executed not from
an irq context. Let's add a warning if the invariant is not respected,
especially since there is a couple of places removing REQ_POLLED by hand
without also clearing REQ_ALLOC_CACHE.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link:
https://lore.kernel.org/r/558d78313476c4e9c233902efa0092644c3d420a.1666122465.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/bio.c
patch
|
blob
|
history
diff --git
a/block/bio.c
b/block/bio.c
index 6c470a50a36d9c92641fe341761404ecdb5a04a9..0a14af92373819d6ed25e332ae91c67720d36db9 100644
(file)
--- a/
block/bio.c
+++ b/
block/bio.c
@@
-741,7
+741,7
@@
void bio_put(struct bio *bio)
return;
}
- if (
bio->bi_opf & REQ_ALLOC_CACHE
) {
+ if (
(bio->bi_opf & REQ_ALLOC_CACHE) && !WARN_ON_ONCE(in_interrupt())
) {
struct bio_alloc_cache *cache;
bio_uninit(bio);