This is an automated email from Gerrit. "Erhan Kurubas <erhan.kuru...@espressif.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7226
-- gerrit commit 35716d0f5720b10ad1220ee3d387eb2507285fda Author: Erhan Kurubas <erhan.kuru...@espressif.com> Date: Wed Sep 28 21:18:49 2022 +0200 target/xtensa: pass correct buffer on read memory retry Read values must be at albuff so that can be copied to buffer on function exit. Signed-off-by: Erhan Kurubas <erhan.kuru...@espressif.com> Change-Id: I74a533e8f12f1002ca06a98a7c7cd928552b4cc5 diff --git a/src/target/xtensa/xtensa.c b/src/target/xtensa/xtensa.c index 4dfff6ab41..66ef1f0ff3 100644 --- a/src/target/xtensa/xtensa.c +++ b/src/target/xtensa/xtensa.c @@ -1782,7 +1782,7 @@ int xtensa_read_memory(struct target *target, target_addr_t address, uint32_t si /* Disable fast memory access instructions and retry before reporting an error */ LOG_TARGET_INFO(target, "Disabling LDDR32.P/SDDR32.P"); xtensa->probe_lsddr32p = 0; - res = xtensa_read_memory(target, address, size, count, buffer); + res = xtensa_read_memory(target, address, size, count, albuff); bswap = false; } else { LOG_TARGET_WARNING(target, "Failed reading %d bytes at address "TARGET_ADDR_FMT, --