diff options
author | Richard Henderson | 2022-04-29 23:55:21 +0200 |
---|---|---|
committer | Richard Henderson | 2022-06-28 01:05:07 +0200 |
commit | cd7f29e335a88c2803bfb42ee3cef60417c43274 (patch) | |
tree | 33a3e1053ec720b55a44194ff6138f540230c45f /semihosting | |
parent | gdbstub: Convert GDB error numbers to host error numbers (diff) | |
download | qemu-cd7f29e335a88c2803bfb42ee3cef60417c43274.tar.gz qemu-cd7f29e335a88c2803bfb42ee3cef60417c43274.tar.xz qemu-cd7f29e335a88c2803bfb42ee3cef60417c43274.zip |
semihosting: Use struct gdb_stat in common_semi_flen_cb
Load the entire 64-bit size value. While we're at it,
use offsetof instead of an integer constant.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'semihosting')
-rw-r--r-- | semihosting/arm-compat-semi.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/semihosting/arm-compat-semi.c b/semihosting/arm-compat-semi.c index abf543ce91..a9e488886a 100644 --- a/semihosting/arm-compat-semi.c +++ b/semihosting/arm-compat-semi.c @@ -325,14 +325,12 @@ static void common_semi_flen_cb(CPUState *cs, target_ulong ret, target_ulong err) { if (!err) { - /* - * The size is always stored in big-endian order, extract - * the value. We assume the size always fit in 32 bits. - */ - uint32_t size; - cpu_memory_rw_debug(cs, common_semi_flen_buf(cs) + 32, - (uint8_t *)&size, 4, 0); - ret = be32_to_cpu(size); + /* The size is always stored in big-endian order, extract the value. */ + uint64_t size; + cpu_memory_rw_debug(cs, common_semi_flen_buf(cs) + + offsetof(struct gdb_stat, gdb_st_size), + &size, 8, 0); + ret = be64_to_cpu(size); } common_semi_cb(cs, ret, err); } |