On Fri, Apr 08, 2022 at 05:01:45PM +0300, Dmitry Kozlyuk wrote: > 2022-04-01 06:29 (UTC-0700), Tyler Retzlaff: > [...] > > +static int > > +test_thread_affinity(void) > > +{ > > + pthread_t id; > > + rte_thread_t thread_id; > > + > > + RTE_TEST_ASSERT(pthread_create(&id, NULL, thread_main, NULL) == 0, > > + "Failed to create thread"); > > + thread_id.opaque_id = id; > > The need for this hack means that the new API is unusable in practice. > I think functions to get the current thread ID and to compare IDs > must be the part of this series to accept this unit test patch.
are you proposing adding rte_thread_self and rte_thread_equals to this series? i'm not sure i understand how that helps? while maybe the unit test could be re-written in some fashion to use rte_thread_self it still wouldn't do much for practically using the api outside of the test. keep in mind i have no intention of combining api introduction and integration into the same series so the hack is limited to the unit test for now. it is my expectation that as subsequent series are merged the hacks will be replaced with new api additions. i'm also not entertaining the idea of growing this series further as we will just end up back where we started with a series that is too large and nobody will properly review or be bold enough to ack. the quickest path to eliminate the hack is to improve the velocity of getting the smaller series reviewed and merged. this is where i would prefer to focus our effort. if there is an absolute need to start using the api introduced in this series outside of the unit test we could as a part of the __experimental apis offer a function that formalizes the conversion to rte_thread_t from pthread_t. the function would only be kept as long as needed and removed when no longer necessary. thanks