From: Philippe Mathieu-Daudé Date: Mon, 9 Oct 2023 09:09:52 +0000 (+0200) Subject: cpus: Remove unused smp_cores/smp_threads declarations X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b216b5daa57ce068183ce865c163f4df01b74614;p=qemu.git cpus: Remove unused smp_cores/smp_threads declarations 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é Signed-off-by: Michael Tokarev --- diff --git a/include/sysemu/cpus.h b/include/sysemu/cpus.h index 0535a4c68a..b4a566cfe7 100644 --- a/include/sysemu/cpus.h +++ b/include/sysemu/cpus.h @@ -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