aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rcutree.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/rcutree.c b/kernel/rcutree.c
index 81af59b8dd88..d5597830faf5 100644
--- a/kernel/rcutree.c
+++ b/kernel/rcutree.c
@@ -122,6 +122,10 @@ static int blimit = 10; /* Maximum callbacks per softirq. */
122static int qhimark = 10000; /* If this many pending, ignore blimit. */ 122static int qhimark = 10000; /* If this many pending, ignore blimit. */
123static int qlowmark = 100; /* Once only this many pending, use blimit. */ 123static int qlowmark = 100; /* Once only this many pending, use blimit. */
124 124
125module_param(blimit, int, 0);
126module_param(qhimark, int, 0);
127module_param(qlowmark, int, 0);
128
125static void force_quiescent_state(struct rcu_state *rsp, int relaxed); 129static void force_quiescent_state(struct rcu_state *rsp, int relaxed);
126static int rcu_pending(int cpu); 130static int rcu_pending(int cpu);
127 131
@@ -878,8 +882,8 @@ static void __rcu_offline_cpu(int cpu, struct rcu_state *rsp)
878 * indefinitely delay callbacks, you have far worse things to 882 * indefinitely delay callbacks, you have far worse things to
879 * be worrying about. 883 * be worrying about.
880 */ 884 */
881 rdp_me = rsp->rda[smp_processor_id()];
882 if (rdp->nxtlist != NULL) { 885 if (rdp->nxtlist != NULL) {
886 rdp_me = rsp->rda[smp_processor_id()];
883 *rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxtlist; 887 *rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxtlist;
884 rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxttail[RCU_NEXT_TAIL]; 888 rdp_me->nxttail[RCU_NEXT_TAIL] = rdp->nxttail[RCU_NEXT_TAIL];
885 rdp->nxtlist = NULL; 889 rdp->nxtlist = NULL;
@@ -1575,7 +1579,3 @@ void __init __rcu_init(void)
1575} 1579}
1576 1580
1577#include "rcutree_plugin.h" 1581#include "rcutree_plugin.h"
1578
1579module_param(blimit, int, 0);
1580module_param(qhimark, int, 0);
1581module_param(qlowmark, int, 0);