af_packet: advertise offload capabilities that code already supports

Message ID 20191113120800.13510-1-paul.atkins@intl.att.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series af_packet: advertise offload capabilities that code already supports |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-compilation success Compile Testing PASS
ci/Intel-compilation success Compilation OK
ci/iol-mellanox-Performance success Performance Testing PASS

Commit Message

Paul Atkins Nov. 13, 2019, 12:08 p.m. UTC
  The af_packet pmd already supports MULTI_SEG tx packets, and tx
VLAN_INSERT so advertise these capabilities.

Signed-off-by: Paul Atkins <paul.atkins@intl.att.com>
---
 drivers/net/af_packet/rte_eth_af_packet.c | 2 ++
 1 file changed, 2 insertions(+)
  

Comments

Ferruh Yigit Nov. 18, 2019, 5:33 p.m. UTC | #1
On 11/13/2019 12:08 PM, Paul Atkins wrote:
> The af_packet pmd already supports MULTI_SEG tx packets, and tx
> VLAN_INSERT so advertise these capabilities.
> 
> Signed-off-by: Paul Atkins <paul.atkins@intl.att.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied to dpdk-next-net/master, thanks.
  

Patch

diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c
index 5b71db707..f5806bf42 100644
--- a/drivers/net/af_packet/rte_eth_af_packet.c
+++ b/drivers/net/af_packet/rte_eth_af_packet.c
@@ -316,6 +316,8 @@  eth_dev_info(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
 	dev_info->max_rx_queues = (uint16_t)internals->nb_queues;
 	dev_info->max_tx_queues = (uint16_t)internals->nb_queues;
 	dev_info->min_rx_bufsize = 0;
+	dev_info->tx_offload_capa = DEV_TX_OFFLOAD_MULTI_SEGS |
+		DEV_TX_OFFLOAD_VLAN_INSERT;
 
 	return 0;
 }