x86/entry: Rename trace_hardirqs_off_prepare()
authorPeter Zijlstra <peterz@infradead.org>
Fri, 29 May 2020 21:27:40 +0000 (23:27 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 11 Jun 2020 13:15:24 +0000 (15:15 +0200)
commitbf2b3008440072068580c609d79a079656af0588
tree32071b8d9445c72a7934bdc0ecb11577da9625b3
parent59bc300b712998d10254ee20e24f2e7ec09c560a
x86/entry: Rename trace_hardirqs_off_prepare()

The typical pattern for trace_hardirqs_off_prepare() is:

  ENTRY
    lockdep_hardirqs_off(); // because hardware
    ... do entry magic
    instrumentation_begin();
    trace_hardirqs_off_prepare();
    ... do actual work
    trace_hardirqs_on_prepare();
    lockdep_hardirqs_on_prepare();
    instrumentation_end();
    ... do exit magic
    lockdep_hardirqs_on();

which shows that it's named wrong, rename it to
trace_hardirqs_off_finish(), as it concludes the hardirq_off transition.

Also, given that the above is the only correct order, make the traditional
all-in-one trace_hardirqs_off() follow suit.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200529213321.415774872@infradead.org
arch/x86/entry/common.c
arch/x86/kernel/cpu/mce/core.c
arch/x86/kernel/nmi.c
arch/x86/kernel/traps.c
include/linux/irqflags.h
kernel/trace/trace_preemptirq.c