|
@@ -1051,7 +1051,7 @@ function_trace_call(unsigned long ip, unsigned long parent_ip)
|
|
|
* Need to use raw, since this must be called before the
|
|
|
* recursive protection is performed.
|
|
|
*/
|
|
|
- raw_local_irq_save(flags);
|
|
|
+ local_irq_save(flags);
|
|
|
cpu = raw_smp_processor_id();
|
|
|
data = tr->data[cpu];
|
|
|
disabled = atomic_inc_return(&data->disabled);
|
|
@@ -1062,7 +1062,7 @@ function_trace_call(unsigned long ip, unsigned long parent_ip)
|
|
|
}
|
|
|
|
|
|
atomic_dec(&data->disabled);
|
|
|
- raw_local_irq_restore(flags);
|
|
|
+ local_irq_restore(flags);
|
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_FUNCTION_RET_TRACER
|