{
uint64_t msr_content;
unsigned int cpu = smp_processor_id();
- static s_time_t next[NR_CPUS];
+ static DEFINE_PER_CPU(s_time_t, next);
ack_APIC_irq();
- if (NOW() < next[cpu])
+ if (NOW() < per_cpu(next, cpu))
return;
- next[cpu] = NOW() + MILLISECS(5000);
+ per_cpu(next, cpu) = NOW() + MILLISECS(5000);
rdmsrl(MSR_IA32_THERM_STATUS, msr_content);
if (msr_content & 0x1) {
printk(KERN_EMERG "CPU%d: Temperature above threshold\n", cpu);
* Telemetry array
*/
struct mctelem_ent *mctc_elems;
+} mctctl;
+
+struct mc_telem_cpu_ctl {
/*
* Per-CPU processing lists, used for deferred (softirq)
- * processing of telemetry. mctc_cpu is indexed by the
- * CPU that the telemetry belongs to. mctc_cpu_processing
- * is indexed by the CPU that is processing the telemetry.
+ * processing of telemetry. @pending is indexed by the
+ * CPU that the telemetry belongs to. @processing is indexed
+ * by the CPU that is processing the telemetry.
*/
- struct mctelem_ent *mctc_cpu[NR_CPUS];
- struct mctelem_ent *mctc_cpu_processing[NR_CPUS];
-} mctctl;
+ struct mctelem_ent *pending;
+ struct mctelem_ent *processing;
+};
+static DEFINE_PER_CPU(struct mc_telem_cpu_ctl, mctctl);
/* Lock protecting all processing lists */
static DEFINE_SPINLOCK(processing_lock);
{
struct mctelem_ent *tep = COOKIE2MCTE(cookie);
- mctelem_xchg_head(&mctctl.mctc_cpu[smp_processor_id()],
- &tep->mcte_next, tep);
+ mctelem_xchg_head(&this_cpu(mctctl.pending), &tep->mcte_next, tep);
}
void mctelem_process_deferred(unsigned int cpu,
* First, unhook the list of telemetry structures, and
* hook it up to the processing list head for this CPU.
*/
- mctelem_xchg_head(&mctctl.mctc_cpu[cpu],
- &mctctl.mctc_cpu_processing[smp_processor_id()], NULL);
+ mctelem_xchg_head(&per_cpu(mctctl.pending, cpu),
+ &this_cpu(mctctl.processing), NULL);
- head = mctctl.mctc_cpu_processing[smp_processor_id()];
+ head = this_cpu(mctctl.processing);
/*
* Then, fix up the list to include prev pointers, to make
int mctelem_has_deferred(unsigned int cpu)
{
- if (mctctl.mctc_cpu[cpu] != NULL)
+ if (per_cpu(mctctl.pending, cpu) != NULL)
return 1;
return 0;
}