On 10/9/25 03:10, Philippe Mathieu-Daudé wrote:
HPPATLBEntry::@pa is a physical address, use the appropriate type.
Signed-off-by: Philippe Mathieu-Daudé<[email protected]>
---
target/hppa/cpu.h | 2 +-
target/hppa/trace-events | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/target/hppa/cpu.h b/target/hppa/cpu.h
index 672ab3750c8..869a75876e2 100644
--- a/target/hppa/cpu.h
+++ b/target/hppa/cpu.h
@@ -187,7 +187,7 @@ typedef struct HPPATLBEntry {
struct HPPATLBEntry *unused_next;
};
- target_ulong pa;
+ hwaddr pa;
unsigned entry_valid : 1;
Reviewed-by: Richard Henderson <[email protected]>
r~