Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121409
b: refs/heads/master
c: 33b1d09
h: refs/heads/master
i:
  121407: b8f1b70
v: v3
  • Loading branch information
Martin Schwidefsky committed Dec 25, 2008
1 parent 8fae9b3 commit 1c051f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4f7e90d6d61fa0e56821787521c12f8a626c4037
refs/heads/master: 33b1d09ef317d64c58b135c2e811bb55b3f15b19
7 changes: 2 additions & 5 deletions trunk/arch/s390/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,18 +500,15 @@ static int __cpuinit smp_alloc_lowcore(int cpu)

save_area = get_zeroed_page(GFP_KERNEL);
if (!save_area)
goto out_save_area;
goto out;
lowcore->extended_save_area_addr = (u32) save_area;
}
#endif
lowcore_ptr[cpu] = lowcore;
return 0;

#ifndef CONFIG_64BIT
out_save_area:
free_page(panic_stack);
#endif
out:
free_page(panic_stack);
free_pages(async_stack, ASYNC_ORDER);
free_pages((unsigned long) lowcore, lc_order);
return -ENOMEM;
Expand Down

0 comments on commit 1c051f3

Please sign in to comment.