Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'io_uring-5.12-2021-04-03' of git://git.kernel.dk/linux-block

POull io_uring fix from Jens Axboe:
"Just fixing a silly braino in a previous patch, where we'd end up
failing to compile if CONFIG_BLOCK isn't enabled.

Not that a lot of people do that, but kernel bot spotted it and it's
probably prudent to just flush this out now before -rc6.

Sorry about that, none of my test compile configs have !CONFIG_BLOCK"

* tag 'io_uring-5.12-2021-04-03' of git://git.kernel.dk/linux-block:
io_uring: fix !CONFIG_BLOCK compilation failure

+5
+5
fs/io_uring.c
··· 2479 2479 return false; 2480 2480 return true; 2481 2481 } 2482 + #else 2483 + static bool io_rw_should_reissue(struct io_kiocb *req) 2484 + { 2485 + return false; 2486 + } 2482 2487 #endif 2483 2488 2484 2489 static bool io_rw_reissue(struct io_kiocb *req)