export.h 301 B

12345678910111213141516171819
  1. #ifndef BTRFS_EXPORT_H
  2. #define BTRFS_EXPORT_H
  3. #include <linux/exportfs.h>
  4. extern const struct export_operations btrfs_export_ops;
  5. struct btrfs_fid {
  6. u64 objectid;
  7. u64 root_objectid;
  8. u32 gen;
  9. u64 parent_objectid;
  10. u32 parent_gen;
  11. u64 parent_root_objectid;
  12. } __attribute__ ((packed));
  13. #endif