View | Details | Raw Unified | Return to bug 36182 | Differences between
and this patch

Collapse All | Expand All

(-)a/arch/x86/kernel/cpu/mcheck/therm_throt.c (-10 lines)
Lines 181-191 static int therm_throt_process(bool new_event, int event, int level) Link Here
181
				this_cpu,
181
				this_cpu,
182
				level == CORE_LEVEL ? "Core" : "Package",
182
				level == CORE_LEVEL ? "Core" : "Package",
183
				state->count);
183
				state->count);
184
		else
185
			printk(KERN_CRIT "CPU%d: %s power limit notification (total events = %lu)\n",
186
				this_cpu,
187
				level == CORE_LEVEL ? "Core" : "Package",
188
				state->count);
189
		return 1;
184
		return 1;
190
	}
185
	}
191
	if (old_event) {
186
	if (old_event) {
Lines 193-202 static int therm_throt_process(bool new_event, int event, int level) Link Here
193
			printk(KERN_INFO "CPU%d: %s temperature/speed normal\n",
188
			printk(KERN_INFO "CPU%d: %s temperature/speed normal\n",
194
				this_cpu,
189
				this_cpu,
195
				level == CORE_LEVEL ? "Core" : "Package");
190
				level == CORE_LEVEL ? "Core" : "Package");
196
		else
197
			printk(KERN_INFO "CPU%d: %s power limit normal\n",
198
				this_cpu,
199
				level == CORE_LEVEL ? "Core" : "Package");
200
		return 1;
191
		return 1;
201
	}
192
	}
202
193
203
- 

Return to bug 36182