summaryrefslogtreecommitdiffstats
path: root/linux-2.6-g5-therm-shutdown.patch
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-07-29 17:18:45 -0700
committerJesse Keating <jkeating@redhat.com>2010-07-29 17:18:45 -0700
commit2f82dda4a9bf41e64e864889bf06564bdf826e25 (patch)
tree118a7b483ae5de4dbf83d20001302f1404866ef0 /linux-2.6-g5-therm-shutdown.patch
parent64ba2e5ffde5f2418eb26c700cb0ab62b04e5013 (diff)
downloaddom0-kernel-2f82dda4a9bf41e64e864889bf06564bdf826e25.tar.gz
dom0-kernel-2f82dda4a9bf41e64e864889bf06564bdf826e25.tar.xz
dom0-kernel-2f82dda4a9bf41e64e864889bf06564bdf826e25.zip
initial srpm import
Diffstat (limited to 'linux-2.6-g5-therm-shutdown.patch')
-rw-r--r--linux-2.6-g5-therm-shutdown.patch70
1 files changed, 70 insertions, 0 deletions
diff --git a/linux-2.6-g5-therm-shutdown.patch b/linux-2.6-g5-therm-shutdown.patch
new file mode 100644
index 0000000..1471ef1
--- /dev/null
+++ b/linux-2.6-g5-therm-shutdown.patch
@@ -0,0 +1,70 @@
+--- linux-2.6.15/drivers/macintosh/therm_pm72.c.orig 2006-04-02 21:34:48.000000000 +0100
++++ linux-2.6.15/drivers/macintosh/therm_pm72.c 2006-04-02 22:33:27.000000000 +0100
+@@ -924,10 +925,16 @@ static void do_monitor_cpu_combined(void
+ printk(KERN_WARNING "Warning ! Temperature way above maximum (%d) !\n",
+ temp_combi >> 16);
+ state0->overtemp += CPU_MAX_OVERTEMP / 4;
+- } else if (temp_combi > (state0->mpu.tmax << 16))
++ } else if (temp_combi > (state0->mpu.tmax << 16)) {
+ state0->overtemp++;
+- else
++ printk(KERN_WARNING "Temperature %d above max %d. overtemp %d\n",
++ temp_combi >> 16, state0->mpu.tmax, state0->overtemp);
++ } else {
++ if (state0->overtemp)
++ printk(KERN_WARNING "Temperature back down to %d\n",
++ temp_combi >> 16);
+ state0->overtemp = 0;
++ }
+ if (state0->overtemp >= CPU_MAX_OVERTEMP)
+ critical_state = 1;
+ if (state0->overtemp > 0) {
+@@ -999,10 +1015,16 @@ static void do_monitor_cpu_split(struct
+ " (%d) !\n",
+ state->index, temp >> 16);
+ state->overtemp += CPU_MAX_OVERTEMP / 4;
+- } else if (temp > (state->mpu.tmax << 16))
++ } else if (temp > (state->mpu.tmax << 16)) {
+ state->overtemp++;
+- else
++ printk(KERN_WARNING "CPU %d temperature %d above max %d. overtemp %d\n",
++ state->index, temp >> 16, state->mpu.tmax, state->overtemp);
++ } else {
++ if (state->overtemp)
++ printk(KERN_WARNING "CPU %d temperature back down to %d\n",
++ state->index, temp >> 16);
+ state->overtemp = 0;
++ }
+ if (state->overtemp >= CPU_MAX_OVERTEMP)
+ critical_state = 1;
+ if (state->overtemp > 0) {
+@@ -1061,10 +1097,16 @@ static void do_monitor_cpu_rack(struct c
+ " (%d) !\n",
+ state->index, temp >> 16);
+ state->overtemp = CPU_MAX_OVERTEMP / 4;
+- } else if (temp > (state->mpu.tmax << 16))
++ } else if (temp > (state->mpu.tmax << 16)) {
+ state->overtemp++;
+- else
++ printk(KERN_WARNING "CPU %d temperature %d above max %d. overtemp %d\n",
++ state->index, temp >> 16, state->mpu.tmax, state->overtemp);
++ } else {
++ if (state->overtemp)
++ printk(KERN_WARNING "CPU %d temperature back down to %d\n",
++ state->index, temp >> 16);
+ state->overtemp = 0;
++ }
+ if (state->overtemp >= CPU_MAX_OVERTEMP)
+ critical_state = 1;
+ if (state->overtemp > 0) {
+--- linux-2.6.15/drivers/macintosh/therm_pm72.h~ 2006-01-03 03:21:10.000000000 +0000
++++ linux-2.6.15/drivers/macintosh/therm_pm72.h 2006-04-02 22:25:58.000000000 +0100
+@@ -243,7 +243,7 @@ struct dimm_pid_state
+ #define CPU_TEMP_HISTORY_SIZE 2
+ #define CPU_POWER_HISTORY_SIZE 10
+ #define CPU_PID_INTERVAL 1
+-#define CPU_MAX_OVERTEMP 30
++#define CPU_MAX_OVERTEMP 90
+
+ #define CPUA_PUMP_RPM_INDEX 7
+ #define CPUB_PUMP_RPM_INDEX 8