[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1337983476-22081-6-git-send-email-richard@nod.at>
Date: Sat, 26 May 2012 00:04:22 +0200
From: Richard Weinberger <richard@....at>
To: linux-kernel@...r.kernel.org
Cc: linux-arch@...r.kernel.org, Richard Weinberger <richard@....at>,
Hirokazu Takata <takata@...ux-m32r.org>,
linux-m32r@...linux-m32r.org
Subject: [PATCH 06/20] m32r: Do not call do_signal() with irqs disabled
get_signal_to_deliver() calls try_to_freeze() which might sleep.
Cc: Hirokazu Takata <takata@...ux-m32r.org>
Cc: linux-m32r@...linux-m32r.org
Signed-off-by: Richard Weinberger <richard@....at>
---
arch/m32r/kernel/signal.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/m32r/kernel/signal.c b/arch/m32r/kernel/signal.c
index f54d969..0521e19 100644
--- a/arch/m32r/kernel/signal.c
+++ b/arch/m32r/kernel/signal.c
@@ -22,6 +22,7 @@
#include <linux/personality.h>
#include <linux/freezer.h>
#include <linux/tracehook.h>
+#include <linux/irqflags.h>
#include <asm/cacheflush.h>
#include <asm/ucontext.h>
#include <asm/uaccess.h>
@@ -372,6 +373,8 @@ static void do_signal(struct pt_regs *regs)
*/
void do_notify_resume(struct pt_regs *regs, __u32 thread_info_flags)
{
+ local_irq_enable();
+
/* Pending single-step? */
if (thread_info_flags & _TIF_SINGLESTEP)
clear_thread_flag(TIF_SINGLESTEP);
--
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