From: Long Li Date: Fri, 9 May 2025 06:30:15 +0000 (+0800) Subject: io_uring: update parameter name in io_pin_pages function declaration X-Git-Tag: v6.16-rc1~215^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ae4308116f1033ceb11b419c01e9c5f17a35633;p=thirdparty%2Flinux.git io_uring: update parameter name in io_pin_pages function declaration Rename first parameter in io_pin_pages from ubuf to uaddr for consistency between declaration and implementation. Signed-off-by: Long Li Link: https://lore.kernel.org/r/20250509063015.3799255-1-leo.lilong@huaweicloud.com Signed-off-by: Jens Axboe --- diff --git a/io_uring/memmap.h b/io_uring/memmap.h index 24afb298e974d..08419684e4bc9 100644 --- a/io_uring/memmap.h +++ b/io_uring/memmap.h @@ -6,7 +6,7 @@ #define IORING_OFF_ZCRX_SHIFT 16 -struct page **io_pin_pages(unsigned long ubuf, unsigned long len, int *npages); +struct page **io_pin_pages(unsigned long uaddr, unsigned long len, int *npages); #ifndef CONFIG_MMU unsigned int io_uring_nommu_mmap_capabilities(struct file *file);