Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport v3.7-branch] xtensa: remove mem_domain excess padding #81097

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/zephyr/arch/xtensa/arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ extern "C" {

struct arch_mem_domain {
#ifdef CONFIG_XTENSA_MMU
uint32_t *ptables __aligned(CONFIG_MMU_PAGE_SIZE);
uint32_t *ptables;
uint8_t asid;
bool dirty;
#endif
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# For some weird reasons, enabling ICOUNT would crash QEMU
# on this test. So disable it.
CONFIG_QEMU_ICOUNT=n