From: Andrew Morton WARNING: line over 80 characters #203: FILE: fs/proc/array.c:207: +static void render_sigset_t(struct seq_file *m, const char *header, sigset_t *set) WARNING: line over 80 characters #264: FILE: fs/proc/array.c:281: +static void render_cap_t(struct seq_file *m, const char *header, kernel_cap_t *a) WARNING: line over 80 characters #307: FILE: fs/proc/array.c:309: +int proc_pid_status(struct seq_file *m, struct pid_namespace *ns, struct pid *pid, WARNING: line over 80 characters #443: FILE: include/linux/cpuset.h:61: +extern void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task); total: 0 errors, 4 warnings, 416 lines checked Your 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: Andrew Morgan Cc: Cedric Le Goater Cc: David Rientjes Cc: Eric W. Biederman Cc: Heiko Carstens Cc: Martin Schwidefsky Cc: Paul Jackson Cc: Paul Menage Cc: Pavel Emelyanov Cc: Serge Hallyn Signed-off-by: Andrew Morton --- fs/proc/array.c | 10 ++++++---- include/linux/cpuset.h | 3 ++- 2 files changed, 8 insertions(+), 5 deletions(-) diff -puN fs/proc/array.c~proc-seqfile-convert-proc_pid_status-to-properly-handle-pid-namespaces-checkpatch-fixes fs/proc/array.c --- a/fs/proc/array.c~proc-seqfile-convert-proc_pid_status-to-properly-handle-pid-namespaces-checkpatch-fixes +++ a/fs/proc/array.c @@ -204,7 +204,8 @@ static inline void task_state(struct seq seq_printf(m, "\n"); } -static void render_sigset_t(struct seq_file *m, const char *header, sigset_t *set) +static void render_sigset_t(struct seq_file *m, const char *header, + sigset_t *set) { int i; @@ -278,7 +279,8 @@ static inline void task_sig(struct seq_f render_sigset_t(m, "SigCgt:\t", &caught); } -static void render_cap_t(struct seq_file *m, const char *header, kernel_cap_t *a) +static void render_cap_t(struct seq_file *m, const char *header, + kernel_cap_t *a) { unsigned __capi; @@ -306,8 +308,8 @@ static inline void task_context_switch_c p->nivcsw); } -int proc_pid_status(struct seq_file *m, struct pid_namespace *ns, struct pid *pid, - struct task_struct *task) +int proc_pid_status(struct seq_file *m, struct pid_namespace *ns, + struct pid *pid, struct task_struct *task) { struct mm_struct *mm = get_task_mm(task); diff -puN include/linux/cpuset.h~proc-seqfile-convert-proc_pid_status-to-properly-handle-pid-namespaces-checkpatch-fixes include/linux/cpuset.h --- a/include/linux/cpuset.h~proc-seqfile-convert-proc_pid_status-to-properly-handle-pid-namespaces-checkpatch-fixes +++ a/include/linux/cpuset.h @@ -58,7 +58,8 @@ extern void __cpuset_memory_pressure_bum extern const struct file_operations proc_cpuset_operations; struct seq_file; -extern void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task); +extern void cpuset_task_status_allowed(struct seq_file *m, + struct task_struct *task); extern void cpuset_lock(void); extern void cpuset_unlock(void); _