Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5815e6c authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

srcu: Make exp_holdoff module parameter be static



Because exp_holdoff is not used outside of srcutree.c, it can be static.
This commit therefore makes this change.

Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
parent 17c7798b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@
#include "rcu.h"
#include "rcu_segcblist.h"

ulong exp_holdoff = 25 * 1000; /* Holdoff (ns) for auto-expediting. */
static ulong exp_holdoff = 25 * 1000; /* Holdoff (ns) for auto-expediting. */
module_param(exp_holdoff, ulong, 0444);

static void srcu_invoke_callbacks(struct work_struct *work);