Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Darrick J. Wong and committed by
Kent Overstreet
be28368b 273960b8

+1 -1
+1 -1
fs/bcachefs/time_stats.h
··· 64 64 struct time_stat_buffer_entry { 65 65 u64 start; 66 66 u64 end; 67 - } entries[32]; 67 + } entries[31]; 68 68 }; 69 69 70 70 struct bch2_time_stats {