aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Gang <gang.chen.5i5j@gmail.com>2014-11-01 22:13:11 -0400
committerChris Metcalf <cmetcalf@tilera.com>2014-11-04 10:38:10 -0500
commit01f7ae056916b4e75ccaa48b9daacb9806caf4aa (patch)
tree9cf1b797c508389f465b9663eb60c0f5d2a7a8b9
parent0df1f2487d2f0d04703f142813d53615d62a1da4 (diff)
arch: tile: kernel: signal.c: Use __copy_from/to_user() instead of __get/put_user()
setup/restore_sigcontext() want to copy all related registers between user and kernel. So use block copy instead of each registers copy. Then can let code simple and clearer (which can avoid compiler's warning): The related warning (with allmodconfig under tile): CC arch/tile/kernel/signal.o In file included from include/linux/poll.h:11:0, from include/linux/ring_buffer.h:7, from include/linux/ftrace_event.h:5, from include/trace/syscall.h:6, from include/linux/syscalls.h:81, from arch/tile/kernel/signal.c:30: arch/tile/kernel/signal.c: In function 'setup_sigcontext': arch/tile/kernel/signal.c:116:31: warning: iteration 53u invokes undefined behavior [-Waggressive-loop-optimizations] err |= __put_user(regs->regs[i], &sc->gregs[i]); ^ ./arch/tile/include/asm/uaccess.h:236:26: note: in definition of macro '__put_user_asm' : "r" (ptr), "r" (x), "i" (-EFAULT)) ^ ./arch/tile/include/asm/uaccess.h:297:10: note: in expansion of macro '__put_user_8' case 8: __put_user_8(x, ptr, __ret); break; \ ^ arch/tile/kernel/signal.c:116:10: note: in expansion of macro '__put_user' err |= __put_user(regs->regs[i], &sc->gregs[i]); ^ arch/tile/kernel/signal.c:115:2: note: containing loop for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i) ^ Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com> Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
-rw-r--r--arch/tile/kernel/signal.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/arch/tile/kernel/signal.c b/arch/tile/kernel/signal.c
index 7c2fecc52177..491669065ffb 100644
--- a/arch/tile/kernel/signal.c
+++ b/arch/tile/kernel/signal.c
@@ -45,8 +45,7 @@
45int restore_sigcontext(struct pt_regs *regs, 45int restore_sigcontext(struct pt_regs *regs,
46 struct sigcontext __user *sc) 46 struct sigcontext __user *sc)
47{ 47{
48 int err = 0; 48 int err;
49 int i;
50 49
51 /* Always make any pending restarted system calls return -EINTR */ 50 /* Always make any pending restarted system calls return -EINTR */
52 current_thread_info()->restart_block.fn = do_no_restart_syscall; 51 current_thread_info()->restart_block.fn = do_no_restart_syscall;
@@ -57,9 +56,7 @@ int restore_sigcontext(struct pt_regs *regs,
57 */ 56 */
58 BUILD_BUG_ON(sizeof(struct sigcontext) != sizeof(struct pt_regs)); 57 BUILD_BUG_ON(sizeof(struct sigcontext) != sizeof(struct pt_regs));
59 BUILD_BUG_ON(sizeof(struct sigcontext) % 8 != 0); 58 BUILD_BUG_ON(sizeof(struct sigcontext) % 8 != 0);
60 59 err = __copy_from_user(regs, sc, sizeof(*regs));
61 for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i)
62 err |= __get_user(regs->regs[i], &sc->gregs[i]);
63 60
64 /* Ensure that the PL is always set to USER_PL. */ 61 /* Ensure that the PL is always set to USER_PL. */
65 regs->ex1 = PL_ICS_EX1(USER_PL, EX1_ICS(regs->ex1)); 62 regs->ex1 = PL_ICS_EX1(USER_PL, EX1_ICS(regs->ex1));
@@ -110,12 +107,7 @@ badframe:
110 107
111int setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs) 108int setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs)
112{ 109{
113 int i, err = 0; 110 return __copy_to_user(sc, regs, sizeof(*regs));
114
115 for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i)
116 err |= __put_user(regs->regs[i], &sc->gregs[i]);
117
118 return err;
119} 111}
120 112
121/* 113/*