• F
    srcu: Initialize SRCU after timers · 8e9c01c7
    Frederic Weisbecker 提交于
    Once srcu_init() is called, the SRCU core will make use of delayed
    workqueues, which rely on timers.  However init_timers() is called
    several steps after rcu_init().  This means that a call_srcu() after
    rcu_init() but before init_timers() would find itself within a dangerously
    uninitialized timer core.
    
    This commit therefore creates a separate call to srcu_init() after
    init_timer() completes, which ensures that we stay in early SRCU mode
    until timers are safe(r).
    Signed-off-by: NFrederic Weisbecker <frederic@kernel.org>
    Cc: Uladzislau Rezki <urezki@gmail.com>
    Cc: Boqun Feng <boqun.feng@gmail.com>
    Cc: Lai Jiangshan <jiangshanlai@gmail.com>
    Cc: Neeraj Upadhyay <neeraju@codeaurora.org>
    Cc: Josh Triplett <josh@joshtriplett.org>
    Cc: Joel Fernandes <joel@joelfernandes.org>
    Signed-off-by: NPaul E. McKenney <paulmck@kernel.org>
    8e9c01c7
main.c 38.2 KB