From: Andrew Morton ERROR: use tabs not spaces #57: FILE: kernel/kprobes.c:100: + {"preempt_schedule",},$ ERROR: use tabs not spaces #58: FILE: kernel/kprobes.c:101: + {NULL} /* Terminator */$ total: 2 errors, 0 warnings, 92 lines checked ./patches/kprobes-prevent-probing-of-preempt_schedule.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: Ananth N Mavinakayanahalli Cc: Dave Hansen Cc: Jim Keniston Cc: Srinivasa DS Cc: Srinivasa Ds Signed-off-by: Andrew Morton --- kernel/kprobes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/kprobes.c~kprobes-prevent-probing-of-preempt_schedule-checkpatch-fixes kernel/kprobes.c --- a/kernel/kprobes.c~kprobes-prevent-probing-of-preempt_schedule-checkpatch-fixes +++ a/kernel/kprobes.c @@ -80,8 +80,8 @@ static DEFINE_PER_CPU(struct kprobe *, k * For such cases, we now have a blacklist */ struct kprobe_blackpoint kprobe_blacklist[] = { - {"preempt_schedule",}, - {NULL} /* Terminator */ + {"preempt_schedule",}, + {NULL} /* Terminator */ }; #ifdef __ARCH_WANT_KPROBES_INSN_SLOT _