-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Labels
area: XtensaXtensa ArchitectureXtensa ArchitecturebugThe issue is a bug, or the PR is fixing a bugThe issue is a bug, or the PR is fixing a bugpriority: lowLow impact/importance bugLow impact/importance bug
Description
Is your enhancement proposal related to a problem? Please describe.
The current definition of arch_mem_domain
for the xtensa architecture (
zephyr/include/zephyr/arch/xtensa/arch.h
Line 65 in 023248a
uint32_t *ptables __aligned(CONFIG_MMU_PAGE_SIZE); |
I suspect the intention behind this alignment is to indicate the pointer points to an MMU page-size aligned address, but instead it aligns the pointer storage itself.
Describe the solution you'd like
The __aligned
directive needs to be removed.
Metadata
Metadata
Assignees
Labels
area: XtensaXtensa ArchitectureXtensa ArchitecturebugThe issue is a bug, or the PR is fixing a bugThe issue is a bug, or the PR is fixing a bugpriority: lowLow impact/importance bugLow impact/importance bug