Message type for VFS_FSTAT
Change-Id: Ibdedcac120fc4bf78e28291d9c97fe02df1928db
This commit is contained in:
@@ -232,10 +232,6 @@
|
||||
|
||||
#define NR_VFS_CALLS 49 /* highest number from base plus one */
|
||||
|
||||
/* Field names for the fstat(2) call. */
|
||||
#define VFS_FSTAT_FD m1_i1 /* int */
|
||||
#define VFS_FSTAT_BUF m1_p1 /* struct stat * */
|
||||
|
||||
/* Field names for the fcntl(2) call. */
|
||||
#define VFS_FCNTL_FD m1_i1 /* int */
|
||||
#define VFS_FCNTL_CMD m1_i2 /* int */
|
||||
|
||||
@@ -146,6 +146,14 @@ typedef struct {
|
||||
} mess_sigcalls;
|
||||
_ASSERT_MSG_SIZE(mess_sigcalls);
|
||||
|
||||
typedef struct {
|
||||
int fd;
|
||||
vir_bytes buf; /* struct stat * */
|
||||
|
||||
uint8_t padding[48];
|
||||
} mess_lc_vfs_fstat;
|
||||
_ASSERT_MSG_SIZE(mess_lc_vfs_fstat);
|
||||
|
||||
typedef struct {
|
||||
int fd;
|
||||
|
||||
@@ -769,6 +777,7 @@ typedef struct {
|
||||
mess_fs_vfs_readsuper m_fs_vfs_readsuper;
|
||||
mess_fs_vfs_readwrite m_fs_vfs_readwrite;
|
||||
|
||||
mess_lc_vfs_fstat m_lc_vfs_fstat;
|
||||
mess_lc_vfs_fsync m_lc_vfs_fsync;
|
||||
mess_lc_vfs_getvfsstat m_lc_vfs_getvfsstat;
|
||||
mess_lc_vfs_ioctl m_lc_vfs_ioctl;
|
||||
|
||||
Reference in New Issue
Block a user