mirror of
https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-9.git
synced 2026-09-09 00:08:12 +08:00
JIRA: https://issues.redhat.com/browse/RHEL-105612 commit ce9464081d5168ee0f279d6932ba82260a5b97c4 Author: Gabriel Krisman Bertazi <krisman@suse.de> Date: Mon Dec 16 15:46:15 2024 -0500 io_uring/msg_ring: Drop custom destructor kfree can handle slab objects nowadays. Drop the extra callback and just use kfree. Signed-off-by: Gabriel Krisman Bertazi <krisman@suse.de> Link: https://lore.kernel.org/r/20241216204615.759089-10-krisman@suse.de Signed-off-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Jeff Moyer <jmoyer@redhat.com>
7 lines
280 B
C
7 lines
280 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
int io_uring_sync_msg_ring(struct io_uring_sqe *sqe);
|
|
int io_msg_ring_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_msg_ring(struct io_kiocb *req, unsigned int issue_flags);
|
|
void io_msg_ring_cleanup(struct io_kiocb *req);
|