summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Jiang2013-09-16 06:53:09 +0200
committerSteven Miao2013-11-15 11:14:42 +0100
commitaefefe92116b776203f95f3249ae61b94f73f170 (patch)
treeec31feb799438f08275015be29d36cfca5da2ce0
parentblackfin: serial: Add serial port_fer and port_mux early platform resources. (diff)
downloadkernel-qcow2-linux-aefefe92116b776203f95f3249ae61b94f73f170.tar.gz
kernel-qcow2-linux-aefefe92116b776203f95f3249ae61b94f73f170.tar.xz
kernel-qcow2-linux-aefefe92116b776203f95f3249ae61b94f73f170.zip
pm: use GFP_ATOMIC when pm core call this function
We shouldn't sleep in atomic sections. Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
-rw-r--r--arch/blackfin/mach-common/pm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-common/pm.c b/arch/blackfin/mach-common/pm.c
index 675ffb148fbc..4319568029fb 100644
--- a/arch/blackfin/mach-common/pm.c
+++ b/arch/blackfin/mach-common/pm.c
@@ -145,7 +145,7 @@ int bfin_pm_suspend_mem_enter(void)
unsigned char *memptr = kmalloc(L1_CODE_LENGTH + L1_DATA_A_LENGTH
+ L1_DATA_B_LENGTH + L1_SCRATCH_LENGTH,
- GFP_KERNEL);
+ GFP_ATOMIC);
if (memptr == NULL) {
panic("bf53x_suspend_l1_mem malloc failed");