Re: [PATCH] ilp32: fix {GET,SET}SIGMASK request for ptrace

2016-08-13 Thread Yury Norov
On Mon, Jun 27, 2016 at 12:49:05PM +0800, zhouchengming wrote: > The function compat_ptrace_request(used by ilp32) don't handle > {GET,SET}SIGMASK request, so it will be handled by ptrace_request. > But it's wrong because the compat_sigset_t of ilp32 differs from > the sigset_t of aarch64. The

Re: [PATCH] ilp32: fix {GET,SET}SIGMASK request for ptrace

2016-06-27 Thread zhouchengming
59069cb41b0b4fdfa06240d3f78910d Mon Sep 17 00:00:00 2001 From: Zhou Chengming <zhouchengmi...@huawei.com> Date: Mon, 27 Jun 2016 12:57:02 +0800 Subject: [PATCH] ilp32: fix {GET,SET}SIGMASK request for ptrace The function compat_ptrace_request(used by ilp32) don't handle {GET,S

Re: [PATCH] ilp32: fix {GET,SET}SIGMASK request for ptrace

2016-06-26 Thread Yury Norov
Hi Zhou, Thank you for the patch. The idea is ok, but patch format got broken for some reason. Could you re-send it? Yury. On Mon, Jun 27, 2016 at 12:49:05PM +0800, zhouchengming wrote: > atus: RO > Content-Length: 4732 > Lines: 181 > > The function compat_ptrace_request(used by ilp32) don't

[PATCH] ilp32: fix {GET,SET}SIGMASK request for ptrace

2016-06-26 Thread zhouchengming
The function compat_ptrace_request(used by ilp32) don't handle {GET,SET}SIGMASK request, so it will be handled by ptrace_request. But it's wrong because the compat_sigset_t of ilp32 differs from the sigset_t of aarch64. The patch fixes it. Signed-off-by: Zhou Chengming