Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec51f8ee authored by Mike Marshall's avatar Mike Marshall Committed by Jens Axboe
Browse files

aio: initialize kiocb private in case any filesystems expect it.



A recent optimization had left private uninitialized.

Fixes: 2bc4ca9b ("aio: don't zero entire aio_kiocb aio_get_req()")
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarMike Marshall <hubcap@omnibond.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 9a6d5488
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1436,6 +1436,7 @@ static int aio_prep_rw(struct kiocb *req, const struct iocb *iocb)
	if (unlikely(!req->ki_filp))
		return -EBADF;
	req->ki_complete = aio_complete_rw;
	req->private = NULL;
	req->ki_pos = iocb->aio_offset;
	req->ki_flags = iocb_flags(req->ki_filp);
	if (iocb->aio_flags & IOCB_FLAG_RESFD)