blob: bf0f29d2c5c481aa17f7fe1b5bfac328127d4646 [file] [log] [blame]
Theodore Ts'o0b2681f2009-07-22 03:40:58 -04001#include <sys/types.h>
2
3#define DEFAULT_CHUNKSIZE (1024*1024)
4
5#define MAX_HIST 32
6struct free_chunk_histogram {
7 unsigned long fc_buckets[MAX_HIST];
8};
9
10struct chunk_info {
11 unsigned long chunkbytes; /* chunk size in bytes */
12 int chunkbits; /* chunk size in bits */
13 unsigned long free_chunks; /* total free chunks of given size */
14 unsigned long real_free_chunks; /* free chunks of any size */
15 int blocksize_bits; /* fs blocksize in bits */
16 int blks_in_chunk; /* number of blocks in a chunk */
17 unsigned long min, max, avg; /* chunk size stats */
18 struct free_chunk_histogram histogram; /* histogram of all chunk sizes*/
19};