Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 356666
b: refs/heads/master
c: 4cd2b2f
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed Feb 14, 2013
1 parent e839e49 commit f101c5c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 67cf48fe2529576bc38ab2b3be929d37d799ac91
refs/heads/master: 4cd2b2fa61ef65300cb237febc0e8a77f23b6c44
1 change: 1 addition & 0 deletions trunk/arch/arm64/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ config ARM64
select GENERIC_CLOCKEVENTS
select GENERIC_COMPAT_RT_SIGPENDING
select GENERIC_COMPAT_RT_SIGPROCMASK
select GENERIC_COMPAT_RT_SIGQUEUEINFO
select GENERIC_HARDIRQS_NO_DEPRECATED
select GENERIC_IOMAP
select GENERIC_IRQ_PROBE
Expand Down
18 changes: 0 additions & 18 deletions trunk/arch/arm64/kernel/signal32.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,24 +693,6 @@ int compat_setup_frame(int usig, struct k_sigaction *ka, sigset_t *set,
return err;
}

asmlinkage int compat_sys_rt_sigqueueinfo(int pid, int sig,
compat_siginfo_t __user *uinfo)
{
siginfo_t info;
int ret;
mm_segment_t old_fs = get_fs();

ret = copy_siginfo_from_user32(&info, uinfo);
if (unlikely(ret))
return ret;

set_fs (KERNEL_DS);
/* The __user pointer cast is valid because of the set_fs() */
ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *) &info);
set_fs (old_fs);
return ret;
}

void compat_setup_restart_syscall(struct pt_regs *regs)
{
regs->regs[7] = __NR_compat_restart_syscall;
Expand Down

0 comments on commit f101c5c

Please sign in to comment.