Re: [dpdk-dev] [PATCH 0/4] catch up TILE-Gx support in DPDK

2017-02-23 Thread Chris Metcalf
, at 10:54 AM, Liming Sun wrote: >>> So do you mean that the TILE-Gx maintainers officially give up on their >>> role? >>> Then please update the MAINTAINERS file. > > Yes. Please update the MAINTAINERS file as needed. > Chris Metcalf is out this week. I c

[dpdk-dev] [PATCH 0/4] catch up TILE-Gx support in DPDK

2017-02-18 Thread Chris Metcalf
, has reviewed these changes (he sits next to me); if it's more appropriate, he can resend these changes with his Signed-off-by as well. I took on this work since I was more familiar with libgxio and the details of our toolchain (I am the maintainer for the tile architecture for Linux and glib

[dpdk-dev] [PATCH 3/4] strict alignment: generalize warning handling

2017-02-18 Thread Chris Metcalf
Rather than allowing just armv7 to have non-fatal strict alignment cast warnings, generalize it to both strict alignment architectures, armv7 and tile. Signed-off-by: Chris Metcalf --- mk/toolchain/gcc/rte.vars.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk

[dpdk-dev] [PATCH 2/4] tile: remove requirement for

2017-02-18 Thread Chris Metcalf
These headers are not part of the set that are upstreamed as part of glibc or the kernel, and we only need a few defines from each. The hardware is frozen so these values are not going to change in any case. Signed-off-by: Chris Metcalf --- drivers/net/mpipe/mpipe_tilegx.c | 15

[dpdk-dev] [PATCH 4/4] tile: fix remaining build issues

2017-02-18 Thread Chris Metcalf
Re-enable CONFIG_RTE_LIBRTE_SCHED, since it is needed to build correctly. Fix a few warnings when compiling mpipe_tilegx.c. Remove an empty rte_cpu_feature_table[] array using a bogus type. Properly set RTE_OBJCOPY_{TARGET,ARCH} in mk/arch/tile/rte.vars.mk. Signed-off-by: Chris Metcalf

[dpdk-dev] [PATCH 1/4] tile: avoid use of non-upstreamed

2017-02-18 Thread Chris Metcalf
It's trivial to directly invoke a read of the special-purpose register that holds the clock cycle counter, so just do that. Signed-off-by: Chris Metcalf --- lib/librte_eal/common/include/arch/tile/rte_cycles.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git