Skip to content

Commit

Permalink
ring_buffer: remove raw from local_irq_save
Browse files Browse the repository at this point in the history
The raw_local_irq_save causes issues with lockdep. We don't need it
so replace them with local_irq_save.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Steven Rostedt authored and Ingo Molnar committed Oct 14, 2008
1 parent 9e9efff commit 70255b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kernel/trace/ring_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ ring_buffer_lock_reserve(struct ring_buffer *buffer,
if (atomic_read(&buffer->record_disabled))
return NULL;

raw_local_irq_save(*flags);
local_irq_save(*flags);
cpu = raw_smp_processor_id();

if (!cpu_isset(cpu, buffer->cpumask))
Expand Down Expand Up @@ -909,7 +909,7 @@ int ring_buffer_unlock_commit(struct ring_buffer *buffer,
rb_commit(cpu_buffer, event);

spin_unlock(&cpu_buffer->lock);
raw_local_irq_restore(flags);
local_irq_restore(flags);

return 0;
}
Expand Down Expand Up @@ -1583,13 +1583,13 @@ void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
if (!cpu_isset(cpu, buffer->cpumask))
return;

raw_local_irq_save(flags);
local_irq_save(flags);
spin_lock(&cpu_buffer->lock);

rb_reset_cpu(cpu_buffer);

spin_unlock(&cpu_buffer->lock);
raw_local_irq_restore(flags);
local_irq_restore(flags);
}

/**
Expand Down

0 comments on commit 70255b5

Please sign in to comment.