Re: [PATCH 1/5] linux-user: handle /proc/self/exe for execve

2021-05-24 Thread Takashi Yamamoto
On Mon, May 24, 2021 at 7:53 PM Alex Bennée wrote: > > > YAMAMOTO Takashi writes: > > > It seems somehow common to execve /proc/self/exe in docker > > or golang community these days. > > At least, moby "reexec" and runc "libcontainer" do that. > > > > Signed-off-by: YAMAMOTO Takashi > > --- > >

Re: [PATCH 1/5] linux-user: handle /proc/self/exe for execve

2021-05-24 Thread Alex Bennée
YAMAMOTO Takashi writes: > It seems somehow common to execve /proc/self/exe in docker > or golang community these days. > At least, moby "reexec" and runc "libcontainer" do that. > > Signed-off-by: YAMAMOTO Takashi > --- > linux-user/syscall.c | 7 ++- > 1 file changed, 6 insertions(+),

[PATCH 1/5] linux-user: handle /proc/self/exe for execve

2021-05-23 Thread YAMAMOTO Takashi
It seems somehow common to execve /proc/self/exe in docker or golang community these days. At least, moby "reexec" and runc "libcontainer" do that. Signed-off-by: YAMAMOTO Takashi --- linux-user/syscall.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git