diff options
author | Ming Lei <ming.lei@redhat.com> | 2024-11-07 12:01:35 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-11-07 23:24:33 +0100 |
commit | 4f219fcce5e4366cc121fc98270beb1fbbb3df2b (patch) | |
tree | a0cd9c3ba258c0ea4492e9ab50da32ff79622e88 /io_uring/rsrc.h | |
parent | io_uring/rsrc: pass 'struct io_ring_ctx' reference to rsrc helpers (diff) | |
download | linux-4f219fcce5e4366cc121fc98270beb1fbbb3df2b.tar.xz linux-4f219fcce5e4366cc121fc98270beb1fbbb3df2b.zip |
io_uring/rsrc: remove '->ctx_ptr' of 'struct io_rsrc_node'
Remove '->ctx_ptr' of 'struct io_rsrc_node', and add 'type' field,
meantime remove io_rsrc_node_type().
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Link: https://lore.kernel.org/r/20241107110149.890530-3-ming.lei@redhat.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/rsrc.h')
-rw-r--r-- | io_uring/rsrc.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/io_uring/rsrc.h b/io_uring/rsrc.h index c9057f7a06f5..c8a64a9ed5b9 100644 --- a/io_uring/rsrc.h +++ b/io_uring/rsrc.h @@ -11,12 +11,10 @@ enum { IORING_RSRC_FILE = 0, IORING_RSRC_BUFFER = 1, - - IORING_RSRC_TYPE_MASK = 0x3UL, }; struct io_rsrc_node { - unsigned long ctx_ptr; + unsigned char type; int refs; u64 tag; @@ -106,11 +104,6 @@ static inline void io_req_put_rsrc_nodes(struct io_kiocb *req) } } -static inline int io_rsrc_node_type(struct io_rsrc_node *node) -{ - return node->ctx_ptr & IORING_RSRC_TYPE_MASK; -} - static inline void io_req_assign_rsrc_node(struct io_rsrc_node **dst_node, struct io_rsrc_node *node) { |