Skip to content

Commit a07a003

Browse files
committed
Merge tag 'io_uring-6.18-20251120' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux
Pull io_uring fix from Jens Axboe: "Just a single fix for a mixup of arguments for the skb_queue_splice() call, in the io_uring timestamp retrieval code" * tag 'io_uring-6.18-20251120' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux: io_uring/cmd_net: fix wrong argument types for skb_queue_splice()
2 parents a4165ff + 4644736 commit a07a003

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io_uring/cmd_net.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ static int io_uring_cmd_timestamp(struct socket *sock,
127127

128128
if (!unlikely(skb_queue_empty(&list))) {
129129
scoped_guard(spinlock_irqsave, &q->lock)
130-
skb_queue_splice(q, &list);
130+
skb_queue_splice(&list, q);
131131
}
132132
return -EAGAIN;
133133
}

0 commit comments

Comments
 (0)