Message type for VFS_MAPDRIVER
Change-Id: I979a8769b72cd06efbedf0c6735ac3cd0c4dd2e3
This commit is contained in:
@@ -232,11 +232,6 @@
|
||||
|
||||
#define NR_VFS_CALLS 49 /* highest number from base plus one */
|
||||
|
||||
/* Field names for the mapdriver(2) call. */
|
||||
#define VFS_MAPDRIVER_MAJOR m1_i1 /* devmajor_t */
|
||||
#define VFS_MAPDRIVER_LABELLEN m1_i2 /* size_t */
|
||||
#define VFS_MAPDRIVER_LABEL m1_p1 /* char * */
|
||||
|
||||
/* Field names for the fsync(2) call. */
|
||||
#define VFS_FSYNC_FD m1_i1 /* int */
|
||||
|
||||
|
||||
@@ -229,6 +229,15 @@ typedef struct {
|
||||
} mess_lsys_vfs_copyfd;
|
||||
_ASSERT_MSG_SIZE(mess_lsys_vfs_copyfd);
|
||||
|
||||
typedef struct {
|
||||
devmajor_t major;
|
||||
size_t labellen;
|
||||
vir_bytes label;
|
||||
|
||||
uint8_t padding[44];
|
||||
} mess_lsys_vfs_mapdriver;
|
||||
_ASSERT_MSG_SIZE(mess_lsys_vfs_mapdriver);
|
||||
|
||||
typedef struct {
|
||||
dev_t device;
|
||||
off_t seek_pos;
|
||||
@@ -689,6 +698,7 @@ typedef struct {
|
||||
|
||||
mess_lsys_vfs_checkperms m_lsys_vfs_checkperms;
|
||||
mess_lsys_vfs_copyfd m_lsys_vfs_copyfd;
|
||||
mess_lsys_vfs_mapdriver m_lsys_vfs_mapdriver;
|
||||
|
||||
mess_vfs_fs_breadwrite m_vfs_fs_breadwrite;
|
||||
mess_vfs_fs_chmod m_vfs_fs_chmod;
|
||||
|
||||
Reference in New Issue
Block a user