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.

24 lines
343 B

2 years ago
  1. #pragma once
  2. #include "lock.h"
  3. struct node
  4. {
  5. struct node *name_next;
  6. struct node *id_next;
  7. uint64_t nodeid;
  8. char *name;
  9. struct node *parent;
  10. uint64_t nlookup;
  11. uint32_t refctr;
  12. uint32_t open_count;
  13. uint64_t hidden_fh;
  14. int32_t treelock;
  15. struct lock *locks;
  16. uint32_t stat_crc32b;
  17. uint8_t is_stat_cache_valid:1;
  18. };