Skip to content

Commit

Permalink
Pull suspend-2.6.24 into release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Len Brown committed Dec 6, 2007
2 parents ceaeee6 + 74d0f33 commit f7a5274
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 0 additions & 4 deletions arch/x86/kernel/acpi/wakeup_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ wakeup_code:
wakeup_code_start = .
.code16

movw $0xb800, %ax
movw %ax,%fs
movw $0x0e00 + 'L', %fs:(0x10)

cli
cld

Expand Down
5 changes: 2 additions & 3 deletions drivers/hwmon/coretemp.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,10 @@ static int coretemp_cpu_callback(struct notifier_block *nfb,

switch (action) {
case CPU_ONLINE:
case CPU_ONLINE_FROZEN:
case CPU_DOWN_FAILED:
coretemp_device_add(cpu);
break;
case CPU_DEAD:
case CPU_DEAD_FROZEN:
case CPU_DOWN_PREPARE:
coretemp_device_remove(cpu);
break;
}
Expand Down
2 changes: 1 addition & 1 deletion fs/jffs2/background.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static int jffs2_garbage_collect_thread(void *_c)

/* Put_super will send a SIGKILL and then wait on the sem.
*/
while (signal_pending(current)) {
while (signal_pending(current) || freezing(current)) {
siginfo_t info;
unsigned long signr;

Expand Down

0 comments on commit f7a5274

Please sign in to comment.