bcachefs: time_stats: shrink time_stat_buffer for better alignment

Shrink this percpu object by one array element so that the object size
becomes exactly 512 bytes.  This will lead to more efficient memory use,
hopefully.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Darrick J. Wong 2024-02-05 13:48:21 -08:00 committed by Kent Overstreet
parent 273960b8f3
commit be28368b2c
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ struct time_stat_buffer {
struct time_stat_buffer_entry {
u64 start;
u64 end;
} entries[32];
} entries[31];
};
struct bch2_time_stats {