Searched defs:zram_stats (Results 1 – 2 of 2) sorted by relevance
77 struct zram_stats { struct78 atomic64_t compr_data_size; /* compressed size of pages stored */79 atomic64_t failed_reads; /* can happen when memory is too low */80 atomic64_t failed_writes; /* can happen when memory is too low */81 atomic64_t notify_free; /* no. of swap slot free notifications */82 atomic64_t same_pages; /* no. of same element filled pages */83 atomic64_t huge_pages; /* no. of huge pages */84 atomic64_t huge_pages_since; /* no. of huge pages since zram set up */85 atomic64_t pages_stored; /* no. of pages currently stored */86 atomic_long_t max_used_pages; /* no. of maximum pages stored */[all …]
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 …]