projects
/
linux-2.6-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b16ef42
)
io_uring: fix misaccounting fix buf pinned pages
io_uring-5.13-2021-06-03
author
Pavel Begunkov
<asml.silence@gmail.com>
Sat, 29 May 2021 11:01:02 +0000
(12:01 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Sun, 30 May 2021 01:27:21 +0000
(19:27 -0600)
As Andres reports "... io_sqe_buffer_register() doesn't initialize imu.
io_buffer_account_pin() does imu->acct_pages++, before calling
io_account_mem(ctx, imu->acct_pages).", leading to evevntual -ENOMEM.
Initialise the field.
Reported-by: Andres Freund <andres@anarazel.de>
Fixes:
41edf1a5ec967
("io_uring: keep table of pointers to ubufs")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link:
https://lore.kernel.org/r/438a6f46739ae5e05d9c75a0c8fa235320ff367c.1622285901.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/io_uring.c
b/fs/io_uring.c
index 903458afd56c17de177e29e58974aac45b7dbcba..42380ed563c41de333bc6b51d3ba358789370eb6 100644
(file)
--- a/
fs/io_uring.c
+++ b/
fs/io_uring.c
@@
-8228,6
+8228,7
@@
static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
{
int i, ret;
+ imu->acct_pages = 0;
for (i = 0; i < nr_pages; i++) {
if (!PageCompound(pages[i])) {
imu->acct_pages++;