aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r--arch/arm/kernel/signal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/kernel/signal.c b/arch/arm/kernel/signal.c
index 8aa6f1b87c9e..023ac905e4c3 100644
--- a/arch/arm/kernel/signal.c
+++ b/arch/arm/kernel/signal.c
@@ -191,7 +191,7 @@ asmlinkage int sys_sigreturn(struct pt_regs *regs)
191 struct sigframe __user *frame; 191 struct sigframe __user *frame;
192 192
193 /* Always make any pending restarted system calls return -EINTR */ 193 /* Always make any pending restarted system calls return -EINTR */
194 current_thread_info()->restart_block.fn = do_no_restart_syscall; 194 current->restart_block.fn = do_no_restart_syscall;
195 195
196 /* 196 /*
197 * Since we stacked the signal on a 64-bit boundary, 197 * Since we stacked the signal on a 64-bit boundary,
@@ -221,7 +221,7 @@ asmlinkage int sys_rt_sigreturn(struct pt_regs *regs)
221 struct rt_sigframe __user *frame; 221 struct rt_sigframe __user *frame;
222 222
223 /* Always make any pending restarted system calls return -EINTR */ 223 /* Always make any pending restarted system calls return -EINTR */
224 current_thread_info()->restart_block.fn = do_no_restart_syscall; 224 current->restart_block.fn = do_no_restart_syscall;
225 225
226 /* 226 /*
227 * Since we stacked the signal on a 64-bit boundary, 227 * Since we stacked the signal on a 64-bit boundary,