From: Wei Yongjun Date: Mon, 6 Jul 2020 13:49:41 +0000 (+0800) Subject: smp: Make symbol 'csd_bug_count' static X-Git-Tag: v5.10-rc1~84^2^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b722160f1a7929f38dfb648c7bbb45f96e65a5b;p=thirdparty%2Flinux.git smp: Make symbol 'csd_bug_count' static The sparse tool complains as follows: kernel/smp.c:107:10: warning: symbol 'csd_bug_count' was not declared. Should it be static? Because variable is not used outside of smp.c, this commit marks it static. Reported-by: Hulk Robot Signed-off-by: Wei Yongjun Signed-off-by: Paul E. McKenney Cc: Peter Zijlstra Cc: Ingo Molnar Cc: Thomas Gleixner Cc: Sebastian Andrzej Siewior --- diff --git a/kernel/smp.c b/kernel/smp.c index c5d31885bd30b..b25383d16e8e9 100644 --- a/kernel/smp.c +++ b/kernel/smp.c @@ -106,7 +106,7 @@ static DEFINE_PER_CPU(smp_call_func_t, cur_csd_func); static DEFINE_PER_CPU(void *, cur_csd_info); #define CSD_LOCK_TIMEOUT (5ULL * NSEC_PER_SEC) -atomic_t csd_bug_count = ATOMIC_INIT(0); +static atomic_t csd_bug_count = ATOMIC_INIT(0); /* Record current CSD work for current CPU, NULL to erase. */ static void csd_lock_record(call_single_data_t *csd)