You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
248 B

  1. #pragma once
  2. #include <stdint.h>
  3. typedef struct fuse_entry_s fuse_entry_t;
  4. struct fuse_entry_s
  5. {
  6. uint64_t nodeid;
  7. uint64_t generation;
  8. uint64_t entry_valid;
  9. uint64_t attr_valid;
  10. uint32_t entry_valid_nsec;
  11. uint32_t attr_valid_nsec;
  12. };