Re: [ovs-dev] [PATCH v3] util: fix an issue that thread name cannot be set

2023-04-16 Thread Songtao Zhan
On Tue, Apr 11, 2023 at 10:05:58AM +0200, Eelco Chaudron wrote: > > > On 7 Apr 2023, at 4:06, Songtao Zhan wrote: > > > To: d...@openvswitch.org, > > i.maxim...@ovn.org > > > > The name of the current thread consists of a name with a maximum > > length of 16 bytes and a thread ID. The final

Re: [ovs-dev] [PATCH v3] util: fix an issue that thread name cannot be set

2023-04-11 Thread Eelco Chaudron
On 7 Apr 2023, at 4:06, Songtao Zhan wrote: > To: d...@openvswitch.org, > i.maxim...@ovn.org > > The name of the current thread consists of a name with a maximum > length of 16 bytes and a thread ID. The final name may be longer > than 16 bytes. If the name is longer than 16 bytes, the

Re: [ovs-dev] [PATCH v3] util: fix an issue that thread name cannot be set

2023-04-07 Thread Simon Horman
On Fri, Apr 07, 2023 at 10:06:39AM +0800, Songtao Zhan wrote: > To: d...@openvswitch.org, > i.maxim...@ovn.org > > The name of the current thread consists of a name with a maximum > length of 16 bytes and a thread ID. The final name may be longer > than 16 bytes. If the name is longer than 16

[ovs-dev] [PATCH v3] util: fix an issue that thread name cannot be set

2023-04-06 Thread Songtao Zhan
To: d...@openvswitch.org, i.maxim...@ovn.org The name of the current thread consists of a name with a maximum length of 16 bytes and a thread ID. The final name may be longer than 16 bytes. If the name is longer than 16 bytes, the thread name will fail to be set Signed-off-by: Songtao Zhan