Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1282999
| From | Vineet Gupta <Vineet.Gupta1@synopsys.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 14/17] ARC: dw2 unwind: No need for __get_user |
| Date | 2015-12-03 13:50 +0100 |
| Message-ID | <qBBuG-53y-13@gated-at.bofh.it> (permalink) |
| References | <qBBuF-53y-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Vineet Gupta <vgupta@synopsys.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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 14/17] ARC: dw2 unwind: No need for __get_user Vineet Gupta <Vineet.Gupta1@synopsys.com> - 2015-12-03 13:50 +0100
csiph-web