mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-13 03:30:34 +03:00
Add missing callback_context_t and fid_t types
This commit is contained in:
parent
703e7a3cf4
commit
23f5c4c281
@ -5,4 +5,16 @@ typedef struct vfs {
|
|||||||
int foo;
|
int foo;
|
||||||
} vfs_t;
|
} vfs_t;
|
||||||
|
|
||||||
|
#define MAXFIDSZ 64
|
||||||
|
|
||||||
|
typedef struct fid {
|
||||||
|
union {
|
||||||
|
long fid_pad;
|
||||||
|
struct {
|
||||||
|
ushort_t len; /* length of data in bytes */
|
||||||
|
char data[MAXFIDSZ];/* data (variable len) */
|
||||||
|
} _fid;
|
||||||
|
} un;
|
||||||
|
} fid_t;
|
||||||
|
|
||||||
#endif /* SPL_ZFS_H */
|
#endif /* SPL_ZFS_H */
|
||||||
|
@ -116,56 +116,56 @@ typedef enum vtype {
|
|||||||
} vtype_t;
|
} vtype_t;
|
||||||
|
|
||||||
typedef struct vattr {
|
typedef struct vattr {
|
||||||
enum vtype va_type; /* vnode type */
|
enum vtype va_type; /* vnode type */
|
||||||
u_int va_mask; /* attribute bit-mask */
|
u_int va_mask; /* attribute bit-mask */
|
||||||
u_short va_mode; /* acc mode */
|
u_short va_mode; /* acc mode */
|
||||||
short va_uid; /* owner uid */
|
short va_uid; /* owner uid */
|
||||||
short va_gid; /* owner gid */
|
short va_gid; /* owner gid */
|
||||||
long va_fsid; /* fs id */
|
long va_fsid; /* fs id */
|
||||||
long va_nodeid; /* node # */
|
long va_nodeid; /* node # */
|
||||||
short va_nlink; /* # links */
|
short va_nlink; /* # links */
|
||||||
u_long va_size; /* file size */
|
u_long va_size; /* file size */
|
||||||
long va_blocksize; /* block size */
|
long va_blocksize; /* block size */
|
||||||
struct timeval va_atime; /* last acc */
|
struct timeval va_atime; /* last acc */
|
||||||
struct timeval va_mtime; /* last mod */
|
struct timeval va_mtime; /* last mod */
|
||||||
struct timeval va_ctime; /* last chg */
|
struct timeval va_ctime; /* last chg */
|
||||||
dev_t va_rdev; /* dev */
|
dev_t va_rdev; /* dev */
|
||||||
long va_blocks; /* space used */
|
long va_blocks; /* space used */
|
||||||
} vattr_t;
|
} vattr_t;
|
||||||
|
|
||||||
typedef struct xoptattr {
|
typedef struct xoptattr {
|
||||||
timestruc_t xoa_createtime; /* Create time of file */
|
timestruc_t xoa_createtime; /* Create time of file */
|
||||||
uint8_t xoa_archive;
|
uint8_t xoa_archive;
|
||||||
uint8_t xoa_system;
|
uint8_t xoa_system;
|
||||||
uint8_t xoa_readonly;
|
uint8_t xoa_readonly;
|
||||||
uint8_t xoa_hidden;
|
uint8_t xoa_hidden;
|
||||||
uint8_t xoa_nounlink;
|
uint8_t xoa_nounlink;
|
||||||
uint8_t xoa_immutable;
|
uint8_t xoa_immutable;
|
||||||
uint8_t xoa_appendonly;
|
uint8_t xoa_appendonly;
|
||||||
uint8_t xoa_nodump;
|
uint8_t xoa_nodump;
|
||||||
uint8_t xoa_settable;
|
uint8_t xoa_settable;
|
||||||
uint8_t xoa_opaque;
|
uint8_t xoa_opaque;
|
||||||
uint8_t xoa_av_quarantined;
|
uint8_t xoa_av_quarantined;
|
||||||
uint8_t xoa_av_modified;
|
uint8_t xoa_av_modified;
|
||||||
} xoptattr_t;
|
} xoptattr_t;
|
||||||
|
|
||||||
typedef struct xvattr {
|
typedef struct xvattr {
|
||||||
vattr_t xva_vattr; /* Embedded vattr structure */
|
vattr_t xva_vattr; /* Embedded vattr structure */
|
||||||
uint32_t xva_magic; /* Magic Number */
|
uint32_t xva_magic; /* Magic Number */
|
||||||
uint32_t xva_mapsize; /* Size of attr bitmap (32-bit words) */
|
uint32_t xva_mapsize; /* Size of attr bitmap (32-bit words) */
|
||||||
uint32_t *xva_rtnattrmapp; /* Ptr to xva_rtnattrmap[] */
|
uint32_t *xva_rtnattrmapp; /* Ptr to xva_rtnattrmap[] */
|
||||||
uint32_t xva_reqattrmap[XVA_MAPSIZE]; /* Requested attrs */
|
uint32_t xva_reqattrmap[XVA_MAPSIZE]; /* Requested attrs */
|
||||||
uint32_t xva_rtnattrmap[XVA_MAPSIZE]; /* Returned attrs */
|
uint32_t xva_rtnattrmap[XVA_MAPSIZE]; /* Returned attrs */
|
||||||
xoptattr_t xva_xoptattrs; /* Optional attributes */
|
xoptattr_t xva_xoptattrs; /* Optional attributes */
|
||||||
} xvattr_t;
|
} xvattr_t;
|
||||||
|
|
||||||
typedef struct vsecattr {
|
typedef struct vsecattr {
|
||||||
uint_t vsa_mask; /* See below */
|
uint_t vsa_mask; /* See below */
|
||||||
int vsa_aclcnt; /* ACL entry count */
|
int vsa_aclcnt; /* ACL entry count */
|
||||||
void *vsa_aclentp; /* pointer to ACL entries */
|
void *vsa_aclentp; /* pointer to ACL entries */
|
||||||
int vsa_dfaclcnt; /* default ACL entry count */
|
int vsa_dfaclcnt; /* default ACL entry count */
|
||||||
void *vsa_dfaclentp; /* pointer to default ACL entries */
|
void *vsa_dfaclentp; /* pointer to default ACL entries */
|
||||||
size_t vsa_aclentsz; /* ACE size in bytes of vsa_aclentp */
|
size_t vsa_aclentsz; /* ACE size in bytes of vsa_aclentp */
|
||||||
} vsecattr_t;
|
} vsecattr_t;
|
||||||
|
|
||||||
typedef struct vnode {
|
typedef struct vnode {
|
||||||
@ -181,15 +181,22 @@ typedef struct vnode {
|
|||||||
} vnode_t;
|
} vnode_t;
|
||||||
|
|
||||||
typedef struct vn_file {
|
typedef struct vn_file {
|
||||||
int f_fd; /* linux fd for lookup */
|
int f_fd; /* linux fd for lookup */
|
||||||
struct file *f_file; /* linux file struct */
|
struct file *f_file; /* linux file struct */
|
||||||
atomic_t f_ref; /* ref count */
|
atomic_t f_ref; /* ref count */
|
||||||
kmutex_t f_lock; /* struct lock */
|
kmutex_t f_lock; /* struct lock */
|
||||||
loff_t f_offset; /* offset */
|
loff_t f_offset; /* offset */
|
||||||
vnode_t *f_vnode; /* vnode */
|
vnode_t *f_vnode; /* vnode */
|
||||||
struct list_head f_list; /* list of referenced file_t's */
|
struct list_head f_list /* list referenced file_t's */
|
||||||
} file_t;
|
} file_t;
|
||||||
|
|
||||||
|
typedef struct caller_context {
|
||||||
|
pid_t cc_pid; /* Process ID of the caller */
|
||||||
|
int cc_sysid; /* System ID, used for remote calls */
|
||||||
|
u_longlong_t cc_caller_id; /* Identifier for (set of) caller(s) */
|
||||||
|
ulong_t cc_flags;
|
||||||
|
} caller_context_t;
|
||||||
|
|
||||||
extern vnode_t *vn_alloc(int flag);
|
extern vnode_t *vn_alloc(int flag);
|
||||||
void vn_free(vnode_t *vp);
|
void vn_free(vnode_t *vp);
|
||||||
extern int vn_open(const char *path, uio_seg_t seg, int flags, int mode,
|
extern int vn_open(const char *path, uio_seg_t seg, int flags, int mode,
|
||||||
@ -218,7 +225,7 @@ vn_rele(vnode_t *vp)
|
|||||||
|
|
||||||
static __inline__ int
|
static __inline__ int
|
||||||
vn_putpage(vnode_t *vp, offset_t off, ssize_t size,
|
vn_putpage(vnode_t *vp, offset_t off, ssize_t size,
|
||||||
int flags, void *x1, void *x2) {
|
int flags, void *x1, void *x2) {
|
||||||
return 0;
|
return 0;
|
||||||
} /* vn_putpage() */
|
} /* vn_putpage() */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user