[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1449146475-15335-15-git-send-email-vgupta@synopsys.com>
Date: Thu, 3 Dec 2015 18:11:12 +0530
From: Vineet Gupta <Vineet.Gupta1@...opsys.com>
To: <linux-snps-arc@...ts.infradead.org>
CC: <JBeulich@...e.com>, <Alexey.Brodkin@...opsys.com>,
<linux-kernel@...r.kernel.org>,
Vineet Gupta <Vineet.Gupta1@...opsys.com>
Subject: [PATCH 14/17] ARC: dw2 unwind: No need for __get_user
Signed-off-by: Vineet Gupta <vgupta@...opsys.com>
---
arch/arc/kernel/unwind.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arc/kernel/unwind.c b/arch/arc/kernel/unwind.c
index b2053b55d076..4f739716f908 100644
--- a/arch/arc/kernel/unwind.c
+++ b/arch/arc/kernel/unwind.c
@@ -1056,7 +1056,7 @@ int arc_unwind(struct unwind_frame_info *frame)
|| addr + sizeof(unsigned long) > endLoc)
return -EIO;
- __get_user(FRAME_REG(i, unsigned long), (unsigned long __user *)addr);
+ FRAME_REG(i, unsigned long) = *(unsigned long *)addr;
break;
}
unw_debug("r%d: 0x%lx\n", i, *fptr);
--
1.9.1
--
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