Skip to content

Commit 56cec28

Browse files
Al Viroaxboe
Al Viro
authored andcommitted
switch io_msg_ring() to CLASS(fd)
Use CLASS(fd) to get the file for sync message ring requests, rather than open-code the file retrieval dance. Signed-off-by: Al Viro <[email protected]> Link: https://lore.kernel.org/r/20241115034902.GP3387508@ZenIV [axboe: make a more coherent commit message] Signed-off-by: Jens Axboe <[email protected]>
1 parent b9d6937 commit 56cec28

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

io_uring/msg_ring.c

+7-11
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ int io_msg_ring(struct io_kiocb *req, unsigned int issue_flags)
333333
int io_uring_sync_msg_ring(struct io_uring_sqe *sqe)
334334
{
335335
struct io_msg io_msg = { };
336-
struct fd f;
337336
int ret;
338337

339338
ret = __io_msg_ring_prep(&io_msg, sqe);
@@ -347,16 +346,13 @@ int io_uring_sync_msg_ring(struct io_uring_sqe *sqe)
347346
if (io_msg.cmd != IORING_MSG_DATA)
348347
return -EINVAL;
349348

350-
ret = -EBADF;
351-
f = fdget(sqe->fd);
352-
if (fd_file(f)) {
353-
ret = -EBADFD;
354-
if (io_is_uring_fops(fd_file(f)))
355-
ret = __io_msg_ring_data(fd_file(f)->private_data,
356-
&io_msg, IO_URING_F_UNLOCKED);
357-
fdput(f);
358-
}
359-
return ret;
349+
CLASS(fd, f)(sqe->fd);
350+
if (fd_empty(f))
351+
return -EBADF;
352+
if (!io_is_uring_fops(fd_file(f)))
353+
return -EBADFD;
354+
return __io_msg_ring_data(fd_file(f)->private_data,
355+
&io_msg, IO_URING_F_UNLOCKED);
360356
}
361357

362358
void io_msg_cache_free(const void *entry)

0 commit comments

Comments
 (0)