From: Andrew Morton WARNING: line over 80 characters #151: FILE: mm/vmalloc.c:210: + int node, gfp_t gfp_mask, void *caller) total: 0 errors, 1 warnings, 228 lines checked ./patches/vmallocinfo-add-caller-information.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: Christoph Lameter Cc: Hugh Dickins Cc: Nick Piggin Signed-off-by: Andrew Morton --- mm/vmalloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN mm/vmalloc.c~vmallocinfo-add-caller-information-checkpatch-fixes mm/vmalloc.c --- a/mm/vmalloc.c~vmallocinfo-add-caller-information-checkpatch-fixes +++ a/mm/vmalloc.c @@ -205,9 +205,9 @@ unsigned long vmalloc_to_pfn(const void } EXPORT_SYMBOL(vmalloc_to_pfn); -static struct vm_struct *__get_vm_area_node(unsigned long size, unsigned long flags, - unsigned long start, unsigned long end, - int node, gfp_t gfp_mask, void *caller) +static struct vm_struct * +__get_vm_area_node(unsigned long size, unsigned long flags, unsigned long start, + unsigned long end, int node, gfp_t gfp_mask, void *caller) { struct vm_struct **p, *tmp, *area; unsigned long align = 1; _