mirror_zfs/include/sys/vfs.h
2009-01-09 10:03:37 -08:00

21 lines
309 B
C

#ifndef _SPL_ZFS_H
#define _SPL_ZFS_H
typedef struct vfs {
int foo;
} 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 */