Skip to content
Commit 45141d46 authored by Steven Rostedt's avatar Steven Rostedt
Browse files

ring-buffer: rename label out_unlock to out_reset



Impact: clean up

While reviewing the ring buffer code, I thougth I saw a bug with

	if (!__raw_spin_trylock(&cpu_buffer->lock))
		goto out_unlock;

But I forgot that we use a variable "lock_taken" that is set if
the spinlock is taken, and only unlock it if that variable is set.

To avoid further confusion from other reviewers, this patch
renames the label out_unlock with out_reset, which is the more
appropriate name.

Signed-off-by: default avatarSteven Rostedt <srostedt@redhat.com>
parent e7669b8e
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment