[dpdk-dev] [PATCH v6 1/6] Move common functions in eal_thread.c

2015-04-22 Thread Bruce Richardson
On Tue, Apr 21, 2015 at 12:28:24PM -0700, Ravi Kerur wrote: > On Tue, Apr 21, 2015 at 7:25 AM, Bruce Richardson < > bruce.richardson at intel.com> wrote: > > > On Sat, Apr 18, 2015 at 12:43:06PM -0700, Ravi Kerur wrote: > > > Changes in v6 > > > Remove RTE_EXEC_ENV_BSDAPP from eal_common_thread.c

[dpdk-dev] [PATCH v6 1/6] Move common functions in eal_thread.c

2015-04-22 Thread Ravi Kerur
On Wed, Apr 22, 2015 at 2:03 AM, Bruce Richardson < bruce.richardson at intel.com> wrote: > On Tue, Apr 21, 2015 at 12:28:24PM -0700, Ravi Kerur wrote: > > On Tue, Apr 21, 2015 at 7:25 AM, Bruce Richardson < > > bruce.richardson at intel.com> wrote: > > > > > On Sat, Apr 18, 2015 at 12:43:06PM -07

[dpdk-dev] [PATCH v6 1/6] Move common functions in eal_thread.c

2015-04-21 Thread Bruce Richardson
On Sat, Apr 18, 2015 at 12:43:06PM -0700, Ravi Kerur wrote: > Changes in v6 > Remove RTE_EXEC_ENV_BSDAPP from eal_common_thread.c file. > Add pthread_setname_np/pthread_set_name_np for Linux/FreeBSD > respectively. Plan to use _getname_ in RTE_LOG when available. > Use existing rte_get_systid() in

[dpdk-dev] [PATCH v6 1/6] Move common functions in eal_thread.c

2015-04-21 Thread Ravi Kerur
On Tue, Apr 21, 2015 at 7:25 AM, Bruce Richardson < bruce.richardson at intel.com> wrote: > On Sat, Apr 18, 2015 at 12:43:06PM -0700, Ravi Kerur wrote: > > Changes in v6 > > Remove RTE_EXEC_ENV_BSDAPP from eal_common_thread.c file. > > Add pthread_setname_np/pthread_set_name_np for Linux/FreeBSD >

[dpdk-dev] [PATCH v6 1/6] Move common functions in eal_thread.c

2015-04-18 Thread Ravi Kerur
Changes in v6 Remove RTE_EXEC_ENV_BSDAPP from eal_common_thread.c file. Add pthread_setname_np/pthread_set_name_np for Linux/FreeBSD respectively. Plan to use _getname_ in RTE_LOG when available. Use existing rte_get_systid() in RTE_LOG to print thread_id. Changes in v5 Rebase to latest code. Cha