The patch titled Subject: mm: remove unnecessary local variable addr in __get_user_pages_fast() has been added to the -mm tree. Its filename is mm-remove-unnecessary-local-variable-addr-in-__get_user_pages_fast.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-remove-unnecessary-local-variable-addr-in-__get_user_pages_fast.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-remove-unnecessary-local-variable-addr-in-__get_user_pages_fast.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: Wei Yang <richard.weiyang@xxxxxxxxx> Subject: mm: remove unnecessary local variable addr in __get_user_pages_fast() The local variable `addr' in __get_user_pages_fast() is just a shadow of `start'. Since `start' never changes after assignment to `addr', it is fine to replace `start' with it. Also the meaning of [start, end] is more obvious than [addr, end] when passed to gup_pgd_range(). Link: http://lkml.kernel.org/r/20180925021448.20265-1-richard.weiyang@xxxxxxxxx Signed-off-by: Wei Yang <richard.weiyang@xxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/gup.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/mm/gup.c~mm-remove-unnecessary-local-variable-addr-in-__get_user_pages_fast +++ a/mm/gup.c @@ -1780,12 +1780,11 @@ bool gup_fast_permitted(unsigned long st int __get_user_pages_fast(unsigned long start, int nr_pages, int write, struct page **pages) { - unsigned long addr, len, end; + unsigned long len, end; unsigned long flags; int nr = 0; start &= PAGE_MASK; - addr = start; len = (unsigned long) nr_pages << PAGE_SHIFT; end = start + len; @@ -1807,7 +1806,7 @@ int __get_user_pages_fast(unsigned long if (gup_fast_permitted(start, nr_pages, write)) { local_irq_save(flags); - gup_pgd_range(addr, end, write, pages, &nr); + gup_pgd_range(start, end, write, pages, &nr); local_irq_restore(flags); } _ Patches currently in -mm which might be from richard.weiyang@xxxxxxxxx are mm-remove-unnecessary-local-variable-addr-in-__get_user_pages_fast.patch