Merge branch 'akpm' (fixes from Andrew)
[linux-2.6/cjktty.git] / fs / nilfs2 / export.h
blob19ccbf9522ab3f826af531c328d73b8b4ce5ec42
1 #ifndef NILFS_EXPORT_H
2 #define NILFS_EXPORT_H
4 #include <linux/exportfs.h>
6 extern const struct export_operations nilfs_export_ops;
8 /**
9 * struct nilfs_fid - NILFS file id type
10 * @cno: checkpoint number
11 * @ino: inode number
12 * @gen: file generation (version) for NFS
13 * @parent_gen: parent generation (version) for NFS
14 * @parent_ino: parent inode number
16 struct nilfs_fid {
17 u64 cno;
18 u64 ino;
19 u32 gen;
21 u32 parent_gen;
22 u64 parent_ino;
23 } __attribute__ ((packed));
25 #endif