Re: [PATCH v10 6/8] linux-user/elfload: Move PT_INTERP detection to first loop

2020-10-03 Thread Philippe Mathieu-Daudé
On 10/3/20 7:38 PM, Philippe Mathieu-Daudé wrote: > On 10/2/20 11:59 PM, Richard Henderson wrote: >> For BTI, we need to know if the executable is static or dynamic, >> which means looking for PT_INTERP earlier. >> >> Signed-off-by: Richard Henderson >> --- >> linux-user/elfload.c | 60 ++

Re: [PATCH v10 6/8] linux-user/elfload: Move PT_INTERP detection to first loop

2020-10-03 Thread Philippe Mathieu-Daudé
On 10/2/20 11:59 PM, Richard Henderson wrote: > For BTI, we need to know if the executable is static or dynamic, > which means looking for PT_INTERP earlier. > > Signed-off-by: Richard Henderson > --- > linux-user/elfload.c | 60 +++- > 1 file changed, 31

[PATCH v10 6/8] linux-user/elfload: Move PT_INTERP detection to first loop

2020-10-02 Thread Richard Henderson
For BTI, we need to know if the executable is static or dynamic, which means looking for PT_INTERP earlier. Signed-off-by: Richard Henderson --- linux-user/elfload.c | 60 +++- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/linux-user/elfl