[dpdk-dev] [PATCH] doc: fix a typo in sample apps guide.

2017-06-17 Thread Rami Rosen
This patch fixes a trivial typo in the sample apps guide. 
commit 35b09d76f89e ("doc: use corelist instead of coremask") replaced 
the usage of coremask (-c) with corelist (-l).
As a result of this patch, we have
./build/ipv4_multicast -l 0-3 -n 3 -- -p 0x3 -q 1
in the sample app guide, while the explanation immediately following
says:
In this command:
• The -c option enables cores 0, 1, 2 and 3

This patch fixes the
explanation to have "-l" instead of "-c".

Signed-off-by: Rami Rosen 
---
 doc/guides/sample_app_ug/ipv4_multicast.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guides/sample_app_ug/ipv4_multicast.rst 
b/doc/guides/sample_app_ug/ipv4_multicast.rst
index 3e30f5090e68..7d2b27e7c3ed 100644
--- a/doc/guides/sample_app_ug/ipv4_multicast.rst
+++ b/doc/guides/sample_app_ug/ipv4_multicast.rst
@@ -117,7 +117,7 @@ Typically, to run the IPv4 Multicast sample application, 
issue the following com
 
 In this command:
 
-*   The -c option enables cores 0, 1, 2 and 3
+*   The -l option enables cores 0, 1, 2 and 3
 
 *   The -n option specifies 3 memory channels
 
-- 
2.7.4



[dpdk-dev] [PATCH] ethdev: fix a typo in rth_ethdev.h.

2017-06-17 Thread Rami Rosen
This patch fixes a trivial typo in rte_ethdev.h; it should be
"RX multicast OFF" and not "RX multicast OF".

Signed-off-by: Rami Rosen 
---
 lib/librte_ether/rte_ethdev.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h
index f6e6c74f7736..0fc9f19a9bac 100644
--- a/lib/librte_ether/rte_ethdev.h
+++ b/lib/librte_ether/rte_ethdev.h
@@ -1409,7 +1409,7 @@ struct eth_dev_ops {
eth_promiscuous_enable_t   promiscuous_enable; /**< Promiscuous ON. */
eth_promiscuous_disable_t  promiscuous_disable;/**< Promiscuous OFF. */
eth_allmulticast_enable_t  allmulticast_enable;/**< RX multicast ON. */
-   eth_allmulticast_disable_t allmulticast_disable;/**< RX multicast OF. */
+   eth_allmulticast_disable_t allmulticast_disable;/**< RX multicast OFF. 
*/
eth_mac_addr_remove_t  mac_addr_remove; /**< Remove MAC address. */
eth_mac_addr_add_t mac_addr_add;  /**< Add a MAC address. */
eth_mac_addr_set_t mac_addr_set;  /**< Set a MAC address. */
-- 
2.7.4



[dpdk-dev] [PATCH v3 1/2] mbuf: introduce new Tx offload flag for MPLS-in-UDP

2017-06-17 Thread Rasesh Mody
From: Harish Patil 

Some PMDs need to know the tunnel type in order to handle advance TX
features. This patch adds a new TX offload flag for MPLS-in-UDP packets.

Signed-off-by: Harish Patil 
---
 lib/librte_mbuf/rte_mbuf.c |3 +++
 lib/librte_mbuf/rte_mbuf.h |2 ++
 2 files changed, 5 insertions(+)

diff --git a/lib/librte_mbuf/rte_mbuf.c b/lib/librte_mbuf/rte_mbuf.c
index 0e3e36a..c853b52 100644
--- a/lib/librte_mbuf/rte_mbuf.c
+++ b/lib/librte_mbuf/rte_mbuf.c
@@ -410,6 +410,7 @@ const char *rte_get_tx_ol_flag_name(uint64_t mask)
case PKT_TX_TUNNEL_IPIP: return "PKT_TX_TUNNEL_IPIP";
case PKT_TX_TUNNEL_GENEVE: return "PKT_TX_TUNNEL_GENEVE";
case PKT_TX_MACSEC: return "PKT_TX_MACSEC";
+   case PKT_TX_TUNNEL_MPLSINUDP: return "PKT_TX_TUNNEL_MPLSINUDP";
default: return NULL;
}
 }
@@ -440,6 +441,8 @@ const char *rte_get_tx_ol_flag_name(uint64_t mask)
  "PKT_TX_TUNNEL_NONE" },
{ PKT_TX_TUNNEL_GENEVE, PKT_TX_TUNNEL_MASK,
  "PKT_TX_TUNNEL_NONE" },
+   { PKT_TX_TUNNEL_MPLSINUDP, PKT_TX_TUNNEL_MASK,
+ "PKT_TX_TUNNEL_NONE" },
{ PKT_TX_MACSEC, PKT_TX_MACSEC, NULL },
};
const char *name;
diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h
index fe605c7..78318be 100644
--- a/lib/librte_mbuf/rte_mbuf.h
+++ b/lib/librte_mbuf/rte_mbuf.h
@@ -208,6 +208,8 @@
 #define PKT_TX_TUNNEL_GRE (0x2ULL << 45)
 #define PKT_TX_TUNNEL_IPIP(0x3ULL << 45)
 #define PKT_TX_TUNNEL_GENEVE  (0x4ULL << 45)
+/**< TX packet with MPLS-in-UDP RFC 7510 header. */
+#define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
 /* add new TX TUNNEL type here */
 #define PKT_TX_TUNNEL_MASK(0xFULL << 45)
 
-- 
1.7.10.3



[dpdk-dev] [PATCH v3 2/2] net/qede: add Tx offloads for MPLS-in-UDP packets

2017-06-17 Thread Rasesh Mody
From: Harish Patil 

Add support for inner/outer L3/L4 TX csum offload for MPLS-in-UDP packets.
The driver checks for PKT_TX_TUNNEL_MPLSINUDP in Tx ol_flags and updates TX
BD elements with appropriate offsets/length of tunnel headers.
The pseudo csum calculation is removed from qede_xmit_prep_pkts() since its
not needed.

Note: Some lines are exceeding 80 columns and is intentionally
not fixed since it affects code readability.

Signed-off-by: Harish Patil 
Signed-off-by: Rasesh Mody 
---
 drivers/net/qede/qede_rxtx.c |  197 +++---
 drivers/net/qede/qede_rxtx.h |3 +-
 2 files changed, 150 insertions(+), 50 deletions(-)

diff --git a/drivers/net/qede/qede_rxtx.c b/drivers/net/qede/qede_rxtx.c
index f65c833..9efb860 100644
--- a/drivers/net/qede/qede_rxtx.c
+++ b/drivers/net/qede/qede_rxtx.c
@@ -1445,7 +1445,6 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
uint64_t ol_flags;
struct rte_mbuf *m;
uint16_t i;
-   int ret;
 
for (i = 0; i < nb_pkts; i++) {
m = tx_pkts[i];
@@ -1478,14 +1477,6 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
break;
}
 #endif
-   /* TBD: pseudo csum calcuation required if
-* ETH_TX_DATA_2ND_BD_L4_PSEUDO_CSUM_MODE not set?
-*/
-   ret = rte_net_intel_cksum_prepare(m);
-   if (ret != 0) {
-   rte_errno = ret;
-   break;
-   }
}
 
 #ifdef RTE_LIBRTE_QEDE_DEBUG_TX
@@ -1496,6 +1487,27 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
return i;
 }
 
+#define MPLSINUDP_HDR_SIZE (12)
+
+#ifdef RTE_LIBRTE_QEDE_DEBUG_TX
+static inline void
+qede_mpls_tunn_tx_sanity_check(struct rte_mbuf *mbuf,
+  struct qede_tx_queue *txq)
+{
+   if (((mbuf->outer_l2_len + mbuf->outer_l3_len) / 2) > 0xff)
+   PMD_TX_LOG(ERR, txq, "tunn_l4_hdr_start_offset overflow\n");
+   if (((mbuf->outer_l2_len + mbuf->outer_l3_len +
+   MPLSINUDP_HDR_SIZE) / 2) > 0xff)
+   PMD_TX_LOG(ERR, txq, "tunn_hdr_size overflow\n");
+   if (((mbuf->l2_len - MPLSINUDP_HDR_SIZE) / 2) >
+   ETH_TX_DATA_2ND_BD_TUNN_INNER_L2_HDR_SIZE_W_MASK)
+   PMD_TX_LOG(ERR, txq, "inner_l2_hdr_size overflow\n");
+   if (((mbuf->l2_len - MPLSINUDP_HDR_SIZE + mbuf->l3_len) / 2) >
+   ETH_TX_DATA_2ND_BD_L4_HDR_START_OFFSET_W_MASK)
+   PMD_TX_LOG(ERR, txq, "inner_l2_hdr_size overflow\n");
+}
+#endif
+
 uint16_t
 qede_xmit_pkts(void *p_txq, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 {
@@ -1510,9 +1522,10 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
uint16_t nb_frags;
uint16_t nb_pkt_sent = 0;
uint8_t nbds;
-   bool ipv6_ext_flg;
bool lso_flg;
+   bool mplsoudp_flg;
__rte_unused bool tunn_flg;
+   bool tunn_ipv6_ext_flg;
struct eth_tx_1st_bd *bd1;
struct eth_tx_2nd_bd *bd2;
struct eth_tx_3rd_bd *bd3;
@@ -1529,6 +1542,10 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
uint16_t mss;
uint16_t bd3_bf;
 
+   uint8_t tunn_l4_hdr_start_offset;
+   uint8_t tunn_hdr_size;
+   uint8_t inner_l2_hdr_size;
+   uint16_t inner_l4_hdr_offset;
 
if (unlikely(txq->nb_tx_avail < txq->tx_free_thresh)) {
PMD_TX_LOG(DEBUG, txq, "send=%u avail=%u free_thresh=%u",
@@ -1540,7 +1557,6 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
bd_prod = rte_cpu_to_le_16(ecore_chain_get_prod_idx(&txq->tx_pbl));
while (nb_tx_pkts--) {
/* Init flags/values */
-   ipv6_ext_flg = false;
tunn_flg = false;
lso_flg = false;
nbds = 0;
@@ -1555,6 +1571,10 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
bd2_bf2 = 0;
mss = 0;
bd3_bf = 0;
+   mplsoudp_flg = false;
+   tunn_ipv6_ext_flg = false;
+   tunn_hdr_size = 0;
+   tunn_l4_hdr_start_offset = 0;
 
mbuf = *tx_pkts++;
assert(mbuf);
@@ -1566,20 +1586,18 @@ static inline uint32_t 
qede_rx_cqe_to_tunn_pkt_type(uint16_t flags)
tx_ol_flags = mbuf->ol_flags;
bd1_bd_flags_bf |= 1 << ETH_TX_1ST_BD_FLAGS_START_BD_SHIFT;
 
-#define RTE_ETH_IS_IPV6_HDR_EXT(ptype) ((ptype) & RTE_PTYPE_L3_IPV6_EXT)
-   if (RTE_ETH_IS_IPV6_HDR_EXT(mbuf->packet_type)) {
-   ipv6_ext_flg = true;
+   /* TX prepare would have already checked supported tunnel Tx
+* offloads. Don't rely on pkt_type marked by Rx, instead use
+* tx_ol_flags to decide.
+