Commit 3a220441 authored by Andrew Morton's avatar Andrew Morton Committed by james toy

ERROR: "foo * bar" should be "foo *bar"

#116: FILE: mm/mmap.c:1835:
+static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,

ERROR: "foo * bar" should be "foo *bar"
#138: FILE: mm/mmap.c:1888:
+int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,

total: 2 errors, 0 warnings, 67 lines checked

./patches/mmap-dont-return-enomem-when-mapcount-is-temporarily-exceeded-in-munmap.patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 06666f81
...@@ -1881,7 +1881,7 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma, ...@@ -1881,7 +1881,7 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
* Split a vma into two pieces at address 'addr', a new vma is allocated * Split a vma into two pieces at address 'addr', a new vma is allocated
* either for the first part or the tail. * either for the first part or the tail.
*/ */
int split_vma(struct mm_struct * mm, struct vm_area_struct * vma, int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
unsigned long addr, int new_below) unsigned long addr, int new_below)
{ {
if (mm->map_count >= sysctl_max_map_count) if (mm->map_count >= sysctl_max_map_count)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment