On 8/5/23 23:53, Michael Tokarev wrote:
06.08.2023 06:36, Richard Henderson wrote:
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
- mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size,
- PROT_READ|PROT_WRITE,
- MAP_ANON|MAP_PRIVATE, 0, 0));
+ mapped_addr = target_mmap(brk_page, new_alloc_size,
+ PROT_READ|PROT_WRITE,
+ MAP_ANON|MAP_PRIVATE, 0, 0);
Can't we add spaces around "|" here at apply time to make checkpatch happy?
Just a nitpick really.. I thought this will be done in some of the Vn,
but it is not.
Since I had to re-spin, I did so.
r~