ZfsArcStats.h 631 B

12345678910111213141516171819202122232425
  1. #ifndef HEADER_ZfsArcStats
  2. #define HEADER_ZfsArcStats
  3. /*
  4. htop - ZfsArcStats.h
  5. (C) 2014 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. typedef struct ZfsArcStats_ {
  10. int enabled;
  11. int isCompressed;
  12. unsigned long long int min;
  13. unsigned long long int max;
  14. unsigned long long int size;
  15. unsigned long long int MFU;
  16. unsigned long long int MRU;
  17. unsigned long long int anon;
  18. unsigned long long int header;
  19. unsigned long long int other;
  20. unsigned long long int compressed;
  21. unsigned long long int uncompressed;
  22. } ZfsArcStats;
  23. #endif