Re: [Qemu-devel] [PATCH] linux-user: added fake open() for /proc/self/cmdline

2014-06-20 Thread Riku Voipio
On Wed, Jun 18, 2014 at 11:02:39AM +0200, li...@fixnum.org wrote: > From: Wim Vander Schelden Seems to work, applied to linux-user updates > Signed-off-by: Wim Vander Schelden > --- > linux-user/syscall.c | 46 ++ > 1 file changed, 46 insertions(+)

Re: [Qemu-devel] [PATCH] linux-user: added fake open() for /proc/self/cmdline

2014-06-18 Thread lists
Hi Eric, Thanks for your feedback. I've addressed the issues you mentioned and verified the patch with checkpatch.pl. The updated patch follows. Kind regards, Wim

[Qemu-devel] [PATCH] linux-user: added fake open() for /proc/self/cmdline

2014-06-18 Thread lists
From: Wim Vander Schelden Signed-off-by: Wim Vander Schelden --- linux-user/syscall.c | 46 ++ 1 file changed, 46 insertions(+) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index c134c32..1be0f09 100644 --- a/linux-user/syscall.c +++ b/li

Re: [Qemu-devel] [PATCH] linux-user: added fake open() for /proc/self/cmdline

2014-06-17 Thread Eric Blake
On 06/16/2014 09:16 PM, li...@fixnum.org wrote: > From: Wim Vander Schelden > > --- Missing a Signed-off-by declaration; without that legal hurdle, we are unwilling to take the patch. For more details: http://wiki.qemu.org/Contribute/SubmitAPatch > linux-user/syscall.c | 49 ++

[Qemu-devel] [PATCH] linux-user: added fake open() for /proc/self/cmdline

2014-06-17 Thread lists
A piece of software I use depends on /proc/self/cmdline to determine the command with which it was invoked. When using linux-user, that file would read: $ hd /proc/self/cmdline 2f 75 73 72 2f 62 69 6e 2f 71 65 6d 75 2d 61 72 |/usr/bin/qemu-ar| 0010 6d

[Qemu-devel] [PATCH] linux-user: added fake open() for /proc/self/cmdline

2014-06-17 Thread lists
From: Wim Vander Schelden --- linux-user/syscall.c | 49 + 1 file changed, 49 insertions(+) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index c134c32..f9fed3e 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -4947,6 +49