Commit 3b6b6a9c authored by Mike Gilbert's avatar Mike Gilbert Committed by Kelsey Skunberg

cpupower: avoid multiple definition with gcc -fno-common

BugLink: https://bugs.launchpad.net/bugs/1873852

[ Upstream commit 2de7fb60 ]

Building cpupower with -fno-common in CFLAGS results in errors due to
multiple definitions of the 'cpu_count' and 'start_time' variables.

./utils/idle_monitor/snb_idle.o:./utils/idle_monitor/cpupower-monitor.h:28:
multiple definition of `cpu_count';
./utils/idle_monitor/nhm_idle.o:./utils/idle_monitor/cpupower-monitor.h:28:
first defined here
...
./utils/idle_monitor/cpuidle_sysfs.o:./utils/idle_monitor/cpuidle_sysfs.c:22:
multiple definition of `start_time';
./utils/idle_monitor/amd_fam14h_idle.o:./utils/idle_monitor/amd_fam14h_idle.c:85:
first defined here

The -fno-common option will be enabled by default in GCC 10.

Bug: https://bugs.gentoo.org/707462Signed-off-by: default avatarMike Gilbert <floppym@gentoo.org>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
Signed-off-by: default avatarKelsey Skunberg <kelsey.skunberg@canonical.com>
parent 8a20e7f1
...@@ -83,7 +83,7 @@ static struct pci_access *pci_acc; ...@@ -83,7 +83,7 @@ static struct pci_access *pci_acc;
static struct pci_dev *amd_fam14h_pci_dev; static struct pci_dev *amd_fam14h_pci_dev;
static int nbp1_entered; static int nbp1_entered;
struct timespec start_time; static struct timespec start_time;
static unsigned long long timediff; static unsigned long long timediff;
#ifdef DEBUG #ifdef DEBUG
......
...@@ -21,7 +21,7 @@ struct cpuidle_monitor cpuidle_sysfs_monitor; ...@@ -21,7 +21,7 @@ struct cpuidle_monitor cpuidle_sysfs_monitor;
static unsigned long long **previous_count; static unsigned long long **previous_count;
static unsigned long long **current_count; static unsigned long long **current_count;
struct timespec start_time; static struct timespec start_time;
static unsigned long long timediff; static unsigned long long timediff;
static int cpuidle_get_count_percent(unsigned int id, double *percent, static int cpuidle_get_count_percent(unsigned int id, double *percent,
......
...@@ -29,6 +29,8 @@ struct cpuidle_monitor *all_monitors[] = { ...@@ -29,6 +29,8 @@ struct cpuidle_monitor *all_monitors[] = {
0 0
}; };
int cpu_count;
static struct cpuidle_monitor *monitors[MONITORS_MAX]; static struct cpuidle_monitor *monitors[MONITORS_MAX];
static unsigned int avail_monitors; static unsigned int avail_monitors;
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#define CSTATE_NAME_LEN 5 #define CSTATE_NAME_LEN 5
#define CSTATE_DESC_LEN 60 #define CSTATE_DESC_LEN 60
int cpu_count; extern int cpu_count;
/* Hard to define the right names ...: */ /* Hard to define the right names ...: */
enum power_range_e { enum power_range_e {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment