diff options
author | Breno Leitao <[email protected]> | 2023-01-18 07:56:30 -0800 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2023-01-29 15:17:41 -0700 |
commit | c1755c25a7190494b45861284b4a30bd9cd813ff (patch) | |
tree | 42cb114ed4fb6907e56be37efee960c53f41985d /scripts/gdb/linux/modules.py | |
parent | b5d3ae202fbfe055aa2a8ae8524531ee1dcab717 (diff) |
io_uring: Enable KASAN for request cache
Every io_uring request is represented by struct io_kiocb, which is
cached locally by io_uring (not SLAB/SLUB) in the list called
submit_state.freelist. This patch simply enabled KASAN for this free
list.
This list is initially created by KMEM_CACHE, but later, managed by
io_uring. This patch basically poisons the objects that are not used
(i.e., they are the free list), and unpoisons it when the object is
allocated/removed from the list.
Touching these poisoned objects while in the freelist will cause a KASAN
warning.
Suggested-by: Jens Axboe <[email protected]>
Signed-off-by: Breno Leitao <[email protected]>
Reviewed-by: Pavel Begunkov <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'scripts/gdb/linux/modules.py')
0 files changed, 0 insertions, 0 deletions