Re: [Qemu-devel] [PATCH] linux-user: support target-to-host SCM_CREDENTIALS

2014-12-22 Thread Alex Suykov
Tue, Dec 23, 2014 at 09:59:57AM +0800, Fam Zheng wrote: > On Sun, 12/21 13:02, Alex Suykov wrote: > > When passing ancillary data through a unix socket, handle > > credentials properly instead of doing a simple copy and > > issuing a warning. > > > > Signed-off-by: Alex Suykov > > --- ... > > -

Re: [Qemu-devel] [PATCH] linux-user: support target-to-host SCM_CREDENTIALS

2014-12-22 Thread Fam Zheng
On Sun, 12/21 13:02, Alex Suykov wrote: > When passing ancillary data through a unix socket, handle > credentials properly instead of doing a simple copy and > issuing a warning. > > Signed-off-by: Alex Suykov > --- > linux-user/syscall.c | 15 +++ > 1 file changed, 11 insertions(+),

[Qemu-devel] [PATCH] linux-user: support target-to-host SCM_CREDENTIALS

2014-12-21 Thread Alex Suykov
When passing ancillary data through a unix socket, handle credentials properly instead of doing a simple copy and issuing a warning. Signed-off-by: Alex Suykov --- linux-user/syscall.c | 15 +++ 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/linux-user/syscall.c b/lin