rcu-tasks: Make rcu_tasks_lazy_ms static
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Thu, 3 Aug 2023 08:06:59 +0000 (16:06 +0800)
committerFrederic Weisbecker <frederic@kernel.org>
Mon, 11 Sep 2023 20:51:37 +0000 (22:51 +0200)
The rcu_tasks_lazy_ms variable is not used outside the file tasks.h,
so this commit marks it static.

kernel/rcu/tasks.h:1085:5: warning: symbol 'rcu_tasks_lazy_ms' was not declared. Should it be static?

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=6086
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
kernel/rcu/tasks.h

index 94bb5abdbb374ac940b260783c71a749b2647ef6..018f03f206290181be0ce5943ddf49b493d55f4a 100644 (file)
@@ -1086,7 +1086,7 @@ void rcu_barrier_tasks(void)
 }
 EXPORT_SYMBOL_GPL(rcu_barrier_tasks);
 
-int rcu_tasks_lazy_ms = -1;
+static int rcu_tasks_lazy_ms = -1;
 module_param(rcu_tasks_lazy_ms, int, 0444);
 
 static int __init rcu_spawn_tasks_kthread(void)