cpus: Remove unused smp_cores/smp_threads declarations
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Mon, 9 Oct 2023 09:09:52 +0000 (11:09 +0200)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 11 Oct 2023 21:37:39 +0000 (00:37 +0300)
Commit a5e0b33119 ("vl.c: Replace smp global variables
with smp machine properties") removed the last uses of
the smp_cores / smp_threads variables but forgot to
remove their declarations. Do it now.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
include/sysemu/cpus.h

index 0535a4c68a300936284c24b64149efb47d4018f2..b4a566cfe75274f6d8f4bfe8abb9e409a4c2e440 100644 (file)
@@ -50,11 +50,4 @@ void cpu_synchronize_all_post_reset(void);
 void cpu_synchronize_all_post_init(void);
 void cpu_synchronize_all_pre_loadvm(void);
 
-#ifndef CONFIG_USER_ONLY
-/* vl.c */
-/* *-user doesn't have configurable SMP topology */
-extern int smp_cores;
-extern int smp_threads;
-#endif
-
 #endif