2012-02-13 16:28:04 +01:00
|
|
|
#ifndef __VFS_REQUEST_H__
|
|
|
|
#define __VFS_REQUEST_H__
|
2006-10-25 15:40:36 +02:00
|
|
|
|
|
|
|
/* Low level request messages are built and sent by wrapper functions.
|
|
|
|
* This file contains the request and response structures for accessing
|
|
|
|
* those wrappers functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
/* Structure for response that contains inode details */
|
|
|
|
typedef struct node_details {
|
2012-02-13 16:28:04 +01:00
|
|
|
endpoint_t fs_e;
|
|
|
|
ino_t inode_nr;
|
|
|
|
mode_t fmode;
|
|
|
|
off_t fsize;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
|
|
|
|
/* For char/block special files */
|
|
|
|
dev_t dev;
|
2006-10-25 15:40:36 +02:00
|
|
|
} node_details_t;
|
|
|
|
|
|
|
|
/* Structure for a lookup response */
|
|
|
|
typedef struct lookup_res {
|
2012-02-13 16:28:04 +01:00
|
|
|
endpoint_t fs_e;
|
|
|
|
ino_t inode_nr;
|
|
|
|
mode_t fmode;
|
|
|
|
off_t fsize;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
/* For char/block special files */
|
|
|
|
dev_t dev;
|
|
|
|
|
|
|
|
/* Fields used for handling mount point and symbolic links */
|
|
|
|
int char_processed;
|
|
|
|
unsigned char symloop;
|
2006-10-25 15:40:36 +02:00
|
|
|
} lookup_res_t;
|
|
|
|
|
|
|
|
|
2012-02-13 16:28:04 +01:00
|
|
|
#endif
|