Re: [PATCH] Constify bitmask_transtbl fcntl/mmap flags_tlb[]

2021-05-16 Thread Bin Meng
On Tue, May 11, 2021 at 6:51 PM Philippe Mathieu-Daudé wrote: > > Keep bitmask_transtbl in .rodata by marking the arrays const. > > Signed-off-by: Philippe Mathieu-Daudé > --- > linux-user/syscall.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Reviewed-by: Bin Meng

Re: [PATCH] Constify bitmask_transtbl fcntl/mmap flags_tlb[]

2021-05-12 Thread Laurent Vivier
Le 11/05/2021 à 12:35, Philippe Mathieu-Daudé a écrit : > Keep bitmask_transtbl in .rodata by marking the arrays const. > > Signed-off-by: Philippe Mathieu-Daudé > --- > linux-user/syscall.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/linux-user/syscall.c

Re: [PATCH] Constify bitmask_transtbl fcntl/mmap flags_tlb[]

2021-05-11 Thread Richard Henderson
On 5/11/21 5:35 AM, Philippe Mathieu-Daudé wrote: Keep bitmask_transtbl in .rodata by marking the arrays const. Signed-off-by: Philippe Mathieu-Daudé --- linux-user/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Richard Henderson r~

[PATCH] Constify bitmask_transtbl fcntl/mmap flags_tlb[]

2021-05-11 Thread Philippe Mathieu-Daudé
Keep bitmask_transtbl in .rodata by marking the arrays const. Signed-off-by: Philippe Mathieu-Daudé --- linux-user/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 95d79ddc437..64f486743a9 100644 ---