Commit 6f283fe2b1ed ("io_uring: define and set show_fdinfo only if procfs is enabled") used CONFIG_PROCFS by mistake. Correct it. Fixes: 6f283fe2b1ed ("io_uring: define and set show_fdinfo only if procfs is enabled") Signed-off-by: Tobias Klauser <tklauser@xxxxxxxxxx> --- fs/io_uring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index bab973106566..05eea06f5421 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -6641,7 +6641,7 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit, return submitted ? submitted : ret; } -#ifdef CONFIG_PROCFS +#ifdef CONFIG_PROC_FS static int io_uring_show_cred(int id, void *p, void *data) { const struct cred *cred = p; @@ -6727,7 +6727,7 @@ static const struct file_operations io_uring_fops = { #endif .poll = io_uring_poll, .fasync = io_uring_fasync, -#ifdef CONFIG_PROCFS +#ifdef CONFIG_PROC_FS .show_fdinfo = io_uring_show_fdinfo, #endif }; -- 2.25.0