[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1337983476-22081-12-git-send-email-richard@nod.at>
Date: Sat, 26 May 2012 00:04:28 +0200
From: Richard Weinberger <richard@....at>
To: linux-kernel@...r.kernel.org
Cc: linux-arch@...r.kernel.org, Richard Weinberger <richard@....at>,
Guan Xuetao <gxt@...c.pku.edu.cn>
Subject: [PATCH 12/20] unicore32: Do not call do_signal() with irqs disabled
get_signal_to_deliver() calls try_to_freeze() which might sleep.
Cc: Guan Xuetao <gxt@...c.pku.edu.cn>
Signed-off-by: Richard Weinberger <richard@....at>
---
arch/unicore32/kernel/signal.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/unicore32/kernel/signal.c b/arch/unicore32/kernel/signal.c
index 7754df6..d25ddd8 100644
--- a/arch/unicore32/kernel/signal.c
+++ b/arch/unicore32/kernel/signal.c
@@ -17,6 +17,7 @@
#include <linux/tracehook.h>
#include <linux/elf.h>
#include <linux/unistd.h>
+#include <linux/irqflags.h>
#include <asm/cacheflush.h>
#include <asm/ucontext.h>
@@ -458,6 +459,8 @@ static void do_signal(struct pt_regs *regs, int syscall)
asmlinkage void do_notify_resume(struct pt_regs *regs,
unsigned int thread_flags, int syscall)
{
+ local_irq_enable();
+
if (thread_flags & _TIF_SIGPENDING)
do_signal(regs, syscall);
--
1.7.7.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists