File tree 1 file changed +7
-11
lines changed
1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,6 @@ int io_msg_ring(struct io_kiocb *req, unsigned int issue_flags)
333
333
int io_uring_sync_msg_ring (struct io_uring_sqe * sqe )
334
334
{
335
335
struct io_msg io_msg = { };
336
- struct fd f ;
337
336
int ret ;
338
337
339
338
ret = __io_msg_ring_prep (& io_msg , sqe );
@@ -347,16 +346,13 @@ int io_uring_sync_msg_ring(struct io_uring_sqe *sqe)
347
346
if (io_msg .cmd != IORING_MSG_DATA )
348
347
return - EINVAL ;
349
348
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 );
360
356
}
361
357
362
358
void io_msg_cache_free (const void * entry )
You can’t perform that action at this time.
0 commit comments