]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mm-madvise-introduce-madv_populate_readwrite-to-prefault-page-tables-checkpatch-fixes
authorAndrew Morton <akpm@linux-foundation.org>
Wed, 2 Jun 2021 03:52:59 +0000 (13:52 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 2 Jun 2021 03:52:59 +0000 (13:52 +1000)
WARNING: please, no space before tabs
#506: FILE: mm/gup.c:1513:
+^I * ^I       the page dirty with FOLL_WRITE -- which doesn't make a$

WARNING: please, no space before tabs
#507: FILE: mm/gup.c:1514:
+^I * ^I       difference with !FOLL_FORCE, because the page is writable$

WARNING: please, no space before tabs
#508: FILE: mm/gup.c:1515:
+^I * ^I       in the page table.$

total: 0 errors, 3 warnings, 214 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

./patches/mm-madvise-introduce-madv_populate_readwrite-to-prefault-page-tables.patch has style problems, please review.

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
mm/gup.c

index 743bae66da3827fe4758321396ae5371d907e179..c3087b3210aeabcaabae7b1bbae74585ef2b53bf 100644 (file)
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -1510,9 +1510,9 @@ long faultin_vma_page_range(struct vm_area_struct *vma, unsigned long start,
 
        /*
         * FOLL_TOUCH: Mark page accessed and thereby young; will also mark
-        *             the page dirty with FOLL_WRITE -- which doesn't make a
-        *             difference with !FOLL_FORCE, because the page is writable
-        *             in the page table.
+        *             the page dirty with FOLL_WRITE -- which doesn't make a
+        *             difference with !FOLL_FORCE, because the page is writable
+        *             in the page table.
         * FOLL_HWPOISON: Return -EHWPOISON instead of -EFAULT when we hit
         *                a poisoned page.
         * FOLL_POPULATE: Always populate memory with VM_LOCKONFAULT.