Re: [dpdk-dev] [PATCH v6 02/10] eal: add thread attributes

2021-04-29 Thread Dmitry Kozlyuk
2021-04-29 09:48 (UTC+0200), Thomas Monjalon: > 29/04/2021 02:50, Dmitry Kozlyuk: > > 2021-04-02 18:39 (UTC-0700), Narcisa Ana Maria Vasile: > > > +int > > > +rte_thread_attr_init(rte_thread_attr_t *attr) > > > +{ > > > + if (attr == NULL) { > > > + RTE_LOG(DEBUG, EAL, > > > + "Un

Re: [dpdk-dev] [PATCH v6 02/10] eal: add thread attributes

2021-04-29 Thread Thomas Monjalon
29/04/2021 02:50, Dmitry Kozlyuk: > 2021-04-02 18:39 (UTC-0700), Narcisa Ana Maria Vasile: > > +int > > +rte_thread_attr_init(rte_thread_attr_t *attr) > > +{ > > + if (attr == NULL) { > > + RTE_LOG(DEBUG, EAL, > > + "Unable to init thread attributes, invalid parameter\n"); > >

Re: [dpdk-dev] [PATCH v6 02/10] eal: add thread attributes

2021-04-28 Thread Dmitry Kozlyuk
2021-04-02 18:39 (UTC-0700), Narcisa Ana Maria Vasile: > From: Narcisa Vasile > > Implement thread attributes for: > * thread affinity > * thread priority > > Implement functions for managing thread attributes. > > Signed-off-by: Narcisa Vasile > --- > lib/librte_eal/common/rte_thread.c

[dpdk-dev] [PATCH v6 02/10] eal: add thread attributes

2021-04-02 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Implement thread attributes for: * thread affinity * thread priority Implement functions for managing thread attributes. Signed-off-by: Narcisa Vasile --- lib/librte_eal/common/rte_thread.c| 53 lib/librte_eal/include/rte_thread.h | 82 +