[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 05/32] Add struct target_freebsd11_stat to bsd-user/syscall_de
From: |
Karim Taha |
Subject: |
[PATCH v2 05/32] Add struct target_freebsd11_stat to bsd-user/syscall_defs |
Date: |
Sun, 13 Aug 2023 05:09:46 +0200 |
From: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/syscall_defs.h | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/bsd-user/syscall_defs.h b/bsd-user/syscall_defs.h
index b6d113d24a..30c24bfe1b 100644
--- a/bsd-user/syscall_defs.h
+++ b/bsd-user/syscall_defs.h
@@ -179,6 +179,39 @@ struct target_freebsd__wrusage {
struct target_freebsd_rusage wru_children;
};
+/*
+ * sys/stat.h
+ */
+struct target_freebsd11_stat {
+ uint32_t st_dev; /* inode's device */
+ uint32_t st_ino; /* inode's number */
+ int16_t st_mode; /* inode protection mode */
+ int16_t st_nlink; /* number of hard links */
+ uint32_t st_uid; /* user ID of the file's owner */
+ uint32_t st_gid; /* group ID of the file's group */
+ uint32_t st_rdev; /* device type */
+ struct target_freebsd_timespec st_atim; /* time last accessed */
+ struct target_freebsd_timespec st_mtim; /* time last data modification */
+ struct target_freebsd_timespec st_ctim; /* time last file status change */
+ int64_t st_size; /* file size, in bytes */
+ int64_t st_blocks; /* blocks allocated for file */
+ uint32_t st_blksize; /* optimal blocksize for I/O */
+ uint32_t st_flags; /* user defined flags for file */
+ uint32_t st_gen; /* file generation number */
+ int32_t st_lspare;
+ struct target_freebsd_timespec st_birthtim; /* time of file creation */
+ /*
+ * Explicitly pad st_birthtim to 16 bytes so that the size of
+ * struct stat is backwards compatible. We use bitfields instead
+ * of an array of chars so that this doesn't require a C99 compiler
+ * to compile if the size of the padding is 0. We use 2 bitfields
+ * to cover up to 64 bits on 32-bit machines. We assume that
+ * CHAR_BIT is 8...
+ */
+ unsigned int:(8 / 2) * (16 - (int)sizeof(struct target_freebsd_timespec));
+ unsigned int:(8 / 2) * (16 - (int)sizeof(struct target_freebsd_timespec));
+} __packed;
+
#define safe_syscall0(type, name) \
type safe_##name(void) \
{ \
--
2.40.0
- [PATCH v2 00/32] Implement the stat system calls for FreeBSD., Karim Taha, 2023/08/13
- [PATCH v2 01/32] Move _WANT_FREEBSD macros to include/qemu/osdep.h, Karim Taha, 2023/08/13
- [PATCH v2 02/32] Disable clang warnings, Karim Taha, 2023/08/13
- [PATCH v2 03/32] Update the definitions of __put_user and __get_user macros, Karim Taha, 2023/08/13
- [PATCH v2 04/32] Declarations of h2t and t2h conversion functions., Karim Taha, 2023/08/13
- [PATCH v2 05/32] Add struct target_freebsd11_stat to bsd-user/syscall_defs,
Karim Taha <=
- [PATCH v2 06/32] Add struct target_stat to bsd-user/syscall_defs.h, Karim Taha, 2023/08/13
- [PATCH v2 07/32] Add structs target_freebsd11_nstat and target_freebsd11_statfs to bsd-user/syscall_defs.h, Karim Taha, 2023/08/13
- [PATCH v2 08/32] Add struct target_statfs to bsd-user/syscall_defs.h, Karim Taha, 2023/08/13
- [PATCH v2 10/32] Define safe_fcntl macro in bsd-user/syscall_defs.h, Karim Taha, 2023/08/13
- [PATCH v2 11/32] Rename target_freebsd_time_t to target_time_t, Karim Taha, 2023/08/13
- [PATCH v2 09/32] Add struct target_freebsd_fhandle and fcntl flags to bsd-user/syscall_defs.h, Karim Taha, 2023/08/13
- [PATCH v2 13/32] Implement h2t_freebsd_fhandle t2h_freebsd_fhandle functions, Karim Taha, 2023/08/13
- [PATCH v2 15/32] Implement target_to_host_fcntl_cmd, Karim Taha, 2023/08/13
- [PATCH v2 17/32] Implement stat related syscalls, Karim Taha, 2023/08/13