Changes in boot/generic/src/balloc.c [ffccdff0:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/src/balloc.c
rffccdff0 ra35b458 28 28 29 29 #include <balloc.h> 30 #include <stdalign.h>31 30 #include <stddef.h> 32 31 #include <align.h> … … 52 51 53 52 /* Enforce minimal alignment. */ 54 alignment = ALIGN_UP(alignment, alignof(max_align_t));53 alignment = ALIGN_UP(alignment, 4); 55 54 56 55 uintptr_t addr = phys_base + ALIGN_UP(ballocs->size, alignment);
Note:
See TracChangeset
for help on using the changeset viewer.