aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/dwarf.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel/dwarf.c')
-rw-r--r--arch/sh/kernel/dwarf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c
index 83f3cc92549f..db021361b161 100644
--- a/arch/sh/kernel/dwarf.c
+++ b/arch/sh/kernel/dwarf.c
@@ -57,7 +57,7 @@ static void dwarf_frame_alloc_regs(struct dwarf_frame *frame,
57 if (frame->num_regs >= num_regs) 57 if (frame->num_regs >= num_regs)
58 return; 58 return;
59 59
60 regs = kzalloc(new_size, GFP_KERNEL); 60 regs = kzalloc(new_size, GFP_ATOMIC);
61 if (!regs) { 61 if (!regs) {
62 printk(KERN_WARNING "Unable to allocate DWARF registers\n"); 62 printk(KERN_WARNING "Unable to allocate DWARF registers\n");
63 /* 63 /*
@@ -531,7 +531,7 @@ struct dwarf_frame *dwarf_unwind_stack(unsigned long pc,
531 define_ra = true; 531 define_ra = true;
532 } 532 }
533 533
534 frame = kzalloc(sizeof(*frame), GFP_KERNEL); 534 frame = kzalloc(sizeof(*frame), GFP_ATOMIC);
535 if (!frame) 535 if (!frame)
536 return NULL; 536 return NULL;
537 537