[dpdk-dev] [PATCH] net/i40evf: fix casting between structs

2016-11-27 Thread Jingjing Wu
Casting from structs which lay out data in typed members to structs which have flat memory buffers, will cause problems if the alignment of the former isn't as expected. This patch removes the casting between structs. Fixes: ae19955e7c86 ("i40evf: support reporting PF reset") Signed-off-by: Jingji

[dpdk-dev] [PATCH] net/i40e: fix log when check Tx free thresh

2016-11-27 Thread Jingjing Wu
Fixes: 4861cde46116 ("i40e: new poll mode driver") Signed-off-by: Jingjing Wu --- drivers/net/i40e/i40e_rxtx.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/i40e/i40e_rxtx.c b/drivers/net/i40e/i40e_rxtx.c index 7ae7d9f..d359dae 100644 --- a/drivers/net/i40e/i40

[dpdk-dev] [PATCH] e1000/base: announce supported NICs

2016-11-27 Thread Wenzhuo Lu
Announce the support of I219 NICs. Also add all the other supported NICs. Add Intel I219 NICs support in release note too. Signed-off-by: Wenzhuo Lu --- doc/guides/rel_notes/release_17_02.rst | 4 drivers/net/e1000/base/README | 21 + 2 files changed, 25 inser

[dpdk-dev] [PATCH v2] mempool: remove a redundant socket_id assignment

2016-11-27 Thread Wei Zhao
From: zhao wei There is a redundant repetition mempool socket_id assignment in the file rte_mempool.c in function rte_mempool_create_empty.The statement "mp->socket_id = socket_id;"appear twice in line 821 and 824.One of them is redundant, so delete it. Fixes: 85226f9c526b ("mempool:introduce a

[dpdk-dev] [PATCH v2] mempool: remove a redundant word "for" in comment

2016-11-27 Thread Wei Zhao
From: zhao wei There is a redundant repetition word "for" in commnet line of the file rte_mempool.h after the definition of RTE_MEMPOOL_OPS_NAMESIZE. The word "for"appear twice in line 359 and 360.One of them is redundant, so delete it. Fixes: 449c49b93a6b (" mempool: support handler operations"

[dpdk-dev] [PATCH] i40evf: add set maximum frame size support

2016-11-27 Thread Wu, Jingjing
-Original Message- From: Michael Bieniek [mailto:michaelbieniekd...@gmail.com] Sent: Saturday, November 26, 2016 4:48 AM To: Zhang, Helin ; Wu, Jingjing Cc: dev at dpdk.org; Michael Bieniek Subject: [PATCH] i40evf: add set maximum frame size support This adds the ability to set maximu

[dpdk-dev] [PATCH] tools: add tags and cscope index file generation support

2016-11-27 Thread Jerin Jacob
This script generates cscope, gtags, and tags index files based on EAL environment. (architecture and OS(linux/bsd)) Selection of the architecture and OS environment is based on dpdk configuration target(T=) example usage: make tags T=x86_64-native-linuxapp-gcc make cscope T=x86_64-native-linuxap