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

2023-04-06 Thread Songtao Zhan
On Thu, Apr 06, 2023 at 10:37:50PM +0200, Ilya Maximets wrote: > On 4/6/23 13:08, zhanst1 wrote: > > On Wed, Apr 05, 2023 at 03:13:47PM +0200, Eelco Chaudron wrote: > >> > >> > >> On 31 Mar 2023, at 10:11, Songtao Zhan wrote: > >> > >>> To: d...@openvswitch.org, > >>> i.maxim...@ovn.org > >>>

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

2023-04-06 Thread Ilya Maximets
On 4/6/23 13:08, zhanst1 wrote: > On Wed, Apr 05, 2023 at 03:13:47PM +0200, Eelco Chaudron wrote: >> >> >> On 31 Mar 2023, at 10:11, 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

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

2023-04-06 Thread zhanst1
On Wed, Apr 05, 2023 at 03:13:47PM +0200, Eelco Chaudron wrote: > > > On 31 Mar 2023, at 10:11, 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

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

2023-04-05 Thread Eelco Chaudron
On 31 Mar 2023, at 10:11, 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 v2] util: fix an issue that thread name cannot be set

2023-04-04 Thread Simon Horman
On Fri, Mar 31, 2023 at 04:11:07PM +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 v2] util: fix an issue that thread name cannot be set

2023-03-31 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