export.h 253 B

123456789101112131415161718
  1. #ifndef NILFS_EXPORT_H
  2. #define NILFS_EXPORT_H
  3. #include <linux/exportfs.h>
  4. extern const struct export_operations nilfs_export_ops;
  5. struct nilfs_fid {
  6. u64 cno;
  7. u64 ino;
  8. u32 gen;
  9. u32 parent_gen;
  10. u64 parent_ino;
  11. } __attribute__ ((packed));
  12. #endif