From 8f24ae67d3b85f0e2a0223b48b01cdc4988586ac Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Fri, 9 Nov 2012 14:04:23 +1100 Subject: [PATCH] mm-rearrange-vm_area_struct-for-fewer-cache-misses-checkpatch-fixes ERROR: "foo * bar" should be "foo *bar" #55: FILE: include/linux/mm_types.h:250: + struct mm_struct * vm_mm; /* The address space we belong to. */ total: 1 errors, 0 warnings, 30 lines checked ./patches/mm-rearrange-vm_area_struct-for-fewer-cache-misses.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Michel Lespinasse Signed-off-by: Andrew Morton --- include/linux/mm_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index a52c83730753..0a7ac4e64984 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -247,7 +247,7 @@ struct vm_area_struct { /* Second cache line starts here. */ - struct mm_struct * vm_mm; /* The address space we belong to. */ + struct mm_struct *vm_mm; /* The address space we belong to. */ pgprot_t vm_page_prot; /* Access permissions of this VMA. */ unsigned long vm_flags; /* Flags, see mm.h. */ -- 2.39.5