Re: [PATCH v5 00/52] replace strerror

2024-11-04 Thread Stephen Hemminger
On Mon, 4 Nov 2024 19:09:45 +0800 Dengdui Huang wrote: > The function strerror() is insecure in a multi-thread environment. > It is better to use strerror_r() instead of strerror(). > In addition, rte_errno should obtain the error description through > rte_strerror() instead of strerror(). > In

[PATCH v5 00/52] replace strerror

2024-11-04 Thread Dengdui Huang
The function strerror() is insecure in a multi-thread environment. It is better to use strerror_r() instead of strerror(). In addition, rte_errno should obtain the error description through rte_strerror() instead of strerror(). In this patchset, only the libs and drivers are modified. v4->v5 stre