aboutsummaryrefslogtreecommitdiffstats
path: root/include/sys/vfs.h
blob: 0b968faa52aa0fe8832ab3efc06880905b21da0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 */