]> www.infradead.org Git - users/dwmw2/qemu.git/commit
linux-user/elfload: Fix pr_pid values in core files
authorIlya Leoshkevich <iii@linux.ibm.com>
Thu, 1 Aug 2024 20:23:22 +0000 (22:23 +0200)
committerRichard Henderson <richard.henderson@linaro.org>
Sun, 4 Aug 2024 22:05:44 +0000 (08:05 +1000)
commit5b0c2742c839376b7e03c4654914aaec6a8a7b09
tree1f733c984f07f132a8a97afd4bf64158997b5049
parentf9851d2ffef59b3a7f39513469263ab3b019480f
linux-user/elfload: Fix pr_pid values in core files

Analyzing qemu-produced core dumps of multi-threaded apps runs into:

    (gdb) info threads
      [...]
      21   Thread 0x3ff83cc0740 (LWP 9295) warning: Couldn't find general-purpose registers in core file.
    <unavailable> in ?? ()

The reason is that all pr_pid values are the same, because the same
TaskState is used for all CPUs when generating NT_PRSTATUS notes.

Fix by using TaskStates associated with individual CPUs.

Cc: qemu-stable@nongnu.org
Fixes: 243c47066253 ("linux-user/elfload: Write corefile elf header in one block")
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20240801202340.21845-1-iii@linux.ibm.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
linux-user/elfload.c