Re: [PATCH v3 0/4] util: Add thread-safe qemu_strerror() function

2023-04-02 Thread Yohei Kojima
I explain why I did not add "Fixes:" line while it is advised to add in the previous review. It is because this patch series solves the issue partially, not completely. There are many more files that includes `strerror()` call, but changing all of them will result in the huge patch series that is h

[PATCH v3 0/4] util: Add thread-safe qemu_strerror() function

2023-03-30 Thread Yohei Kojima
This patch series adds qemu_strerror() function, which is thread-safe version of the libc strerror(). The first patch introduces the qemu_strerror() function, and the second patch replaces strerror() function in linux-user/* with qemu_strerror() function. The difference between this patch series a