Searched defs:zram_stats (Results 1 – 2 of 2) sorted by relevance
87 struct zram_stats { struct88 atomic64_t compr_data_size; /* compressed size of pages stored */89 atomic64_t num_reads; /* failed + successful */90 atomic64_t num_writes; /* --do-- */91 atomic64_t failed_reads; /* can happen when memory is too low */92 atomic64_t failed_writes; /* can happen when memory is too low */93 atomic64_t invalid_io; /* non-page-aligned I/O requests */94 atomic64_t notify_free; /* no. of swap slot free notifications */95 atomic64_t same_pages; /* no. of same element filled pages */96 atomic64_t huge_pages; /* no. of huge pages */[all …]
93 struct zram_stats { struct94 atomic64_t compr_data_size; /* compressed size of pages stored */95 atomic64_t failed_reads; /* can happen when memory is too low */96 atomic64_t failed_writes; /* can happen when memory is too low */97 atomic64_t notify_free; /* no. of swap slot free notifications */98 atomic64_t same_pages; /* no. of same element filled pages */99 atomic64_t huge_pages; /* no. of huge pages */100 atomic64_t huge_pages_since; /* no. of huge pages since zram set up */101 atomic64_t pages_stored; /* no. of pages currently stored */102 atomic_long_t max_used_pages; /* no. of maximum pages stored */[all …]