Re: [PATCH v2 01/11] linux-user: handle /proc/self/exe for execve

2021-06-22 Thread Laurent Vivier
Le 21/06/2021 à 04:02, Takashi Yamamoto a écrit : > On Sun, Jun 20, 2021 at 11:14 PM Laurent Vivier wrote: >> >> Le 31/05/2021 à 07:50, YAMAMOTO Takashi a écrit : >>> It seems somehow common to execve /proc/self/exe in docker >>> or golang community these days. >>> At least, moby "reexec" and runc

Re: [PATCH v2 01/11] linux-user: handle /proc/self/exe for execve

2021-06-20 Thread Takashi Yamamoto
On Sun, Jun 20, 2021 at 11:14 PM Laurent Vivier wrote: > > Le 31/05/2021 à 07:50, YAMAMOTO Takashi a écrit : > > 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: YAMAMO

Re: [PATCH v2 01/11] linux-user: handle /proc/self/exe for execve

2021-06-20 Thread Laurent Vivier
Le 31/05/2021 à 07:50, YAMAMOTO Takashi a écrit : > 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 chang

[PATCH v2 01/11] linux-user: handle /proc/self/exe for execve

2021-05-30 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 a/linux-user/syscal