The patch titled Subject: mm: use vma_pages() for vma objects has been added to the -mm mm-unstable branch. Its filename is mm-use-vma_pages-for-vma-objects.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-use-vma_pages-for-vma-objects.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Chen Haonan <chen.haonan2@xxxxxxxxxx> Subject: mm: use vma_pages() for vma objects Date: Wed, 6 Dec 2023 18:36:27 +0800 vma_pages() is more readable and also better at avoiding error codes, so use vma_pages() instead of direct operations on vma Link: https://lkml.kernel.org/r/tencent_151850CF327EB055BBC83298A929BD06CD0A@xxxxxx Signed-off-by: Chen Haonan <chen.haonan2@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/internal.h~mm-use-vma_pages-for-vma-objects +++ a/mm/internal.h @@ -616,7 +616,7 @@ folio_within_range(struct folio *folio, unsigned long start, unsigned long end) { pgoff_t pgoff, addr; - unsigned long vma_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT; + unsigned long vma_pglen = vma_pages(vma); VM_WARN_ON_FOLIO(folio_test_ksm(folio), folio); if (start > end) _ Patches currently in -mm which might be from chen.haonan2@xxxxxxxxxx are mm-use-vma_pages-for-vma-objects.patch