The branch stable/13 has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=2bc1e37e1d83392e1552616d5c17f49d79e52eda

commit 2bc1e37e1d83392e1552616d5c17f49d79e52eda
Author:     Minsoo Choo <[email protected]>
AuthorDate: 2024-01-12 23:37:53 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2024-04-08 17:30:09 +0000

    Stop using expressions in _Alignof()
    
    _Alignof(expression) is a non-standard extension.  This is not allowed
    in gnu11 and gnu17 which follow the C11 standard _Alignof(type).
    
    Reviewed by:    arichardson, imp, jhb
    Fixes:          4a9cd9fc22d7 amd64 db_trace: Reject unaligned frame pointers
    Fixes:          7ccaf76a27f1 riscv db_trace: Ensure trapframe pointer is 
suitably aligned.
    Fixes:          638c68897fbd arm64 db_trace: Ensure trapframe pointer is 
suitably aligned.
    Differential Revision:  https://reviews.freebsd.org/D43409
    
    (cherry picked from commit 03d04bf49492fc70366e6d78194336a4122282a2)
---
 sys/amd64/amd64/db_trace.c | 3 ++-
 sys/riscv/riscv/db_trace.c | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/sys/amd64/amd64/db_trace.c b/sys/amd64/amd64/db_trace.c
index 87a0c2aec7bf..9706e65c64af 100644
--- a/sys/amd64/amd64/db_trace.c
+++ b/sys/amd64/amd64/db_trace.c
@@ -206,7 +206,8 @@ db_nextframe(db_addr_t *fp, db_addr_t *ip, struct thread 
*td)
         */
        tf_addr = *fp + 16;
 
-       if (!__is_aligned(tf_addr, _Alignof(*tf)) || !INKERNEL(tf_addr)) {
+       if (!__is_aligned(tf_addr, _Alignof(struct trapframe)) ||
+           !INKERNEL(tf_addr)) {
                db_printf("--- invalid trapframe %p\n", (void *)tf_addr);
                *ip = 0;
                *fp = 0;
diff --git a/sys/riscv/riscv/db_trace.c b/sys/riscv/riscv/db_trace.c
index 12972839c29d..148ad88b3ffb 100644
--- a/sys/riscv/riscv/db_trace.c
+++ b/sys/riscv/riscv/db_trace.c
@@ -84,7 +84,7 @@ db_stack_trace_cmd(struct thread *td, struct unwind_state 
*frame)
                        struct trapframe *tf;
 
                        tf = (struct trapframe *)(uintptr_t)frame->sp;
-                       if (!__is_aligned(tf, _Alignof(*tf)) ||
+                       if (!__is_aligned(tf, _Alignof(struct trapframe)) ||
                            !kstack_contains(td, (vm_offset_t)tf,
                            sizeof(*tf))) {
                                db_printf("--- invalid trapframe %p\n", tf);

Reply via email to