diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-16 19:28:11 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-07-21 13:38:33 +0100 |
commit | 7724ca9a772594b96939ff549c74f46e11d7870b (patch) | |
tree | c70c06702ba494e1c6183ad506bb88bb4249feda | |
parent | e6da704b711d5d731e4d933ad56cbbc25ee0a825 (diff) | |
download | qemu-7724ca9a772594b96939ff549c74f46e11d7870b.zip qemu-7724ca9a772594b96939ff549c74f46e11d7870b.tar.gz qemu-7724ca9a772594b96939ff549c74f46e11d7870b.tar.bz2 |
accel/hvf: Display executable bit as 'X'
Developers are accustomed to read RWX, not RWE.
Replace E -> X.
Reported-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Mads Ynddal <mads@ynddal.dk>
Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | accel/hvf/hvf-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/hvf/hvf-all.c b/accel/hvf/hvf-all.c index e67a810..0a4b498 100644 --- a/accel/hvf/hvf-all.c +++ b/accel/hvf/hvf-all.c @@ -84,7 +84,7 @@ static int do_hvf_set_memory(hvf_slot *slot, hv_memory_flags_t flags) trace_hvf_vm_map(slot->start, slot->size, slot->mem, flags, flags & HV_MEMORY_READ ? 'R' : '-', flags & HV_MEMORY_WRITE ? 'W' : '-', - flags & HV_MEMORY_EXEC ? 'E' : '-'); + flags & HV_MEMORY_EXEC ? 'X' : '-'); ret = hv_vm_map(slot->mem, slot->start, slot->size, flags); assert_hvf_ok(ret); return 0; |