• Steven Rostedt (VMware)'s avatar
    ring-buffer: Rewrite trace_recursive_(un)lock() to be simpler · 1a149d7d
    Steven Rostedt (VMware) authored
    The current method to prevent the ring buffer from entering into a recursize
    loop is to use a bitmask and set the bit that maps to the current context
    (normal, softirq, irq or NMI), and if that bit was already set, it is
    considered a recursive loop.
    
    New code is being added that may require the ring buffer to be entered a
    second time in the current context. The recursive locking prevents that from
    happening. Instead of mapping a bitmask to the current context, just allow 4
    levels of nesting in the ring buffer. This matches the 4 context levels that
    it can already nest. It is highly unlikely to have more than two levels,
    thus it should be fine when we add the second entry into the ring buffer. If
    that proves to be a problem, we can always up the number to 8.
    
    An added benefit is that reading preempt_count() to get the current level
    adds a very slight but noticeable overhead. This removes that need.
    Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
    1a149d7d
ring_buffer.c 130 KB