From ee0b3d14b6cfb1ec69501b2c3948b5dd6b18c0a3 Mon Sep 17 00:00:00 2001 From: Jeff Moyer Date: Mon, 13 Jan 2025 18:53:52 +0000 Subject: [PATCH] io_uring: manually fix compilation error io_uring: manually fix compilation error JIRA: https://issues.redhat.com/browse/RHEL-64867 Signed-off-by: Rado Vrbovsky --- io_uring/memmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_uring/memmap.c b/io_uring/memmap.c index 94b1f1aa8429..07038bb2ffd2 100644 --- a/io_uring/memmap.c +++ b/io_uring/memmap.c @@ -20,7 +20,7 @@ static void *io_mem_alloc_compound(struct page **pages, int nr_pages, int i, order; order = get_order(size); - if (order > MAX_ORDER) + if (order > MAX_PAGE_ORDER) return ERR_PTR(-ENOMEM); else if (order) gfp |= __GFP_COMP;