Skip to content

Commit 77a1cd5

Browse files
committed
io_uring: re-arrange Makefile order
The object list is a bit of a mess, with core and opcode files mixed in. Re-arrange it so that we have the core bits first, and then opcode specific files after that. Signed-off-by: Jens Axboe <[email protected]>
1 parent 05eb5fe commit 77a1cd5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

io_uring/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#
33
# Makefile for io_uring
44

5-
obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o fs.o splice.o \
6-
sync.o advise.o filetable.o \
7-
openclose.o uring_cmd.o epoll.o \
8-
statx.o net.o msg_ring.o timeout.o \
9-
sqpoll.o fdinfo.o tctx.o poll.o \
10-
cancel.o kbuf.o rsrc.o rw.o opdef.o \
11-
notif.o waitid.o register.o truncate.o
5+
obj-$(CONFIG_IO_URING) += io_uring.o opdef.o kbuf.o rsrc.o notif.o \
6+
tctx.o filetable.o rw.o net.o poll.o \
7+
uring_cmd.o openclose.o sqpoll.o \
8+
xattr.o nop.o fs.o splice.o sync.o \
9+
msg_ring.o advise.o openclose.o \
10+
epoll.o statx.o timeout.o fdinfo.o \
11+
cancel.o waitid.o register.o truncate.o
1212
obj-$(CONFIG_IO_WQ) += io-wq.o
1313
obj-$(CONFIG_FUTEX) += futex.o
1414
obj-$(CONFIG_NET_RX_BUSY_POLL) += napi.o

0 commit comments

Comments
 (0)