Re: [PATCH 07/33] Add struct target_stat to bsd-user/syscall_defs.h

2023-08-08 Thread Richard Henderson
On 8/7/23 23:07, Karim Taha wrote: +struct target_stat { +uint64_t st_dev; /* inode's device */ +uint64_t st_ino; /* inode's number */ +uint64_t st_nlink; /* number of hard links */ Indentation of 8 instead of 4. Otherwise, Ack

[PATCH 07/33] Add struct target_stat to bsd-user/syscall_defs.h

2023-08-08 Thread Karim Taha
From: Michal Meloun Signed-off-by: Michal Meloun Signed-off-by: Karim Taha --- bsd-user/syscall_defs.h | 38 ++ 1 file changed, 38 insertions(+) diff --git a/bsd-user/syscall_defs.h b/bsd-user/syscall_defs.h index 5ef76ffa52..e796e7e13d 100644 --- a/bsd-use