2008-03-10 19:04:14 +00:00
|
|
|
#ifndef _SPL_ZFS_H
|
|
|
|
#define _SPL_ZFS_H
|
|
|
|
|
2008-03-15 00:05:38 +00:00
|
|
|
typedef struct vfs {
|
2008-03-11 20:54:40 +00:00
|
|
|
int foo;
|
|
|
|
} vfs_t;
|
|
|
|
|
2009-01-09 18:03:37 +00:00
|
|
|
#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;
|
|
|
|
|
2008-03-10 19:04:14 +00:00
|
|
|
#endif /* SPL_ZFS_H */
|