commit | ce10b567d83491d6502ced37fe29b29a2301a9fe | [log] [tgz] |
---|---|---|
author | Steven Rostedt <rostedt@goodmis.org> | Wed Jun 26 15:28:12 2013 -0400 |
committer | Clark Williams <clark.williams@gmail.com> | Thu Jul 04 14:32:34 2013 -0500 |
tree | 6d93a6966d0adefb8a14c107255a4379a575e87b | |
parent | 0e50145c73b099066541987a2efd7373eaaa14d8 [diff] |
vtime: Convert vtime_seqlock into raw_spinlock_t and seqcount combo The vtime seqlock needs to be taken in true interrupt context on -rt. The normal seqlocks are converted to mutexes when PREEMPT_RT_FULL is enabled, which will break the vtime code as the calls are done from interrupt context. Convert the vtime seqlock into the raw_spinlock_t and seqcount combo that can be done in interrupt context. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>