On Tue, Aug 09, 2022 at 10:15:41AM +0100, Alexandru Elisei wrote: > Commit 11c4715fbf87 ("alloc: implement free") changed align_min from a > static variable to a field for the alloc_ops struct and carried over the > initializer value of DEFAULT_MINIMUM_ALIGNMENT. > > Commit 7e3e823b78c0 ("lib/alloc.h: remove align_min from struct > alloc_ops") removed the align_min field and changed it back to a static > variable, but missed initializing it. > > Initialize align_min to DEFAULT_MINIMUM_ALIGNMENT, as it was intended. > > Signed-off-by: Alexandru Elisei <alexandru.elisei@xxxxxxx> > --- > lib/alloc_phys.c | 7 +++---- > lib/alloc_phys.h | 2 -- > 2 files changed, 3 insertions(+), 6 deletions(-) Reviewed-by: Andrew Jones <andrew.jones@xxxxxxxxx>