Re: [PATCH v2] eal/linux: enhanced error handling for affinity

2024-10-04 Thread Stephen Hemminger
On Sun, 28 Apr 2024 20:26:18 +0800 (CST) "Jianyue Wu" wrote: > Yes, agree with that, there is also trace from kernel can see that. I'll > ignore this patch. > > > At 2024-04-27 08:18:53, "Stephen Hemminger" > wrote: > >On Fri, 26 Apr 2024 08:47:37 -0700 > >Tyler Retzlaff wrote: > > > >> >

Re:Re: [PATCH v2] eal/linux: enhanced error handling for affinity

2024-04-29 Thread Jianyue Wu
Yes, agree with that, there is also trace from kernel can see that. I'll ignore this patch. At 2024-04-27 08:18:53, "Stephen Hemminger" wrote: >On Fri, 26 Apr 2024 08:47:37 -0700 >Tyler Retzlaff wrote: > >> > int >> > -- >> >> i do not think introducing os specific behavior/logging to the

Re: [PATCH v2] eal/linux: enhanced error handling for affinity

2024-04-26 Thread Stephen Hemminger
On Fri, 26 Apr 2024 08:47:37 -0700 Tyler Retzlaff wrote: > > int > > -- > > i do not think introducing os specific behavior/logging to the EAL > is a good idea. logging although not formally part of the api surface > should present the same experience for all platforms. the EAL should > have

Re: [PATCH v2] eal/linux: enhanced error handling for affinity

2024-04-26 Thread Tyler Retzlaff
On Thu, Apr 25, 2024 at 07:11:30PM +0800, Jianyue Wu wrote: > From: Jianyue Wu > > Improve the robustness of setting thread affinity in DPDK > by adding detailed error logging. > > Changes: > 1. Check the return value of pthread_setaffinity_np() and log an error > if the call fails. > 2. Include

[PATCH v2] eal/linux: enhanced error handling for affinity

2024-04-26 Thread Jianyue Wu
From: Jianyue Wu Improve the robustness of setting thread affinity in DPDK by adding detailed error logging. Changes: 1. Check the return value of pthread_setaffinity_np() and log an error if the call fails. 2. Include the current thread name, the intended CPU set, and a detailed error message i

[PATCH v2] eal/linux: enhanced error handling for affinity

2024-04-24 Thread Jianyue Wu
Improve the robustness of setting thread affinity in DPDK by adding detailed error logging. Changes: 1. Check the return value of pthread_setaffinity_np() and log an error if the call fails. 2. Include the current thread name, the intended CPU set, and a detailed error message in the log. Sample

RE: [PATCH v2] eal/linux: enhanced error handling for affinity

2024-04-23 Thread Jianyue Wu (NSB)
Hello, I've noticed some coding style issues eal/linux: enhanced error handling for affinity - Patchwork (dpdk.org) and have attempted to update the patch accordingly. Could you please help by updating