[dpdk-dev] [PATCH v2] lib/ether: prevent duplicate callback on list

2016-10-20 Thread E. Scott Daniels
sh if malloc of user callback fails") Signed-off-by: E. Scott Daniels --- V2: * Correct the component name; changed from net/ixgbe. * Add Fixes tag. * Acked-by: Wenzhuo Lu lib/librte_ether/rte_ethdev.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/li

[dpdk-dev] [PATCH] net/ixgbe: prevent duplicate callback on list

2016-10-19 Thread E. Scott Daniels
This change prevents the attempt to add a structure which is already on the callback list. If a struct with matching parameters is found on the list, then no action is taken. If a struct with matching parameters is found on the list, then no action is taken. Signed-off-by: E. Scott Daniels

[dpdk-dev] [PATCH] net/ixgbe: prevent duplicate callback on list

2016-10-19 Thread E. Scott Daniels
think it should be corrected; patch prevents the attempt to add a struct which is already on the list. E. Scott Daniels (1): net/ixgbe: prevent duplicate callback on list lib/librte_ether/rte_ethdev.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) -- 1.9.1

[dpdk-dev] [PATCH] net/ixgbe: fix vlan insert parameter type and its use

2016-10-18 Thread E. Scott Daniels
4095. Corresponding changes to prototype and documentation in the .h file. Fixes: 49e248223e9f71 ("net/ixgbe: add API for VF management") Signed-off-by: E. Scott Daniels --- drivers/net/ixgbe/ixgbe_ethdev.c | 8 drivers/net/ixgbe/rte_pmd_ixgbe.h | 9 + 2 files