2012-09-04 12:54:00 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2014-02-10 11:46:50 +00:00
|
|
|
* Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
|
2014-11-26 15:04:48 +00:00
|
|
|
* Copyright 2014 6WIND S.A.
|
2012-09-04 12:54:00 +00:00
|
|
|
* All rights reserved.
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2013-09-18 10:00:00 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
2012-09-04 12:54:00 +00:00
|
|
|
* are met:
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2013-09-18 10:00:00 +00:00
|
|
|
* * Redistributions of source code must retain the above copyright
|
2012-09-04 12:54:00 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2013-09-18 10:00:00 +00:00
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
2012-09-04 12:54:00 +00:00
|
|
|
* distribution.
|
2013-09-18 10:00:00 +00:00
|
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
2012-09-04 12:54:00 +00:00
|
|
|
* from this software without specific prior written permission.
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2013-09-18 10:00:00 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2012-09-04 12:54:00 +00:00
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <rte_debug.h>
|
|
|
|
#include <rte_common.h>
|
|
|
|
#include <rte_log.h>
|
|
|
|
#include <rte_memory.h>
|
|
|
|
#include <rte_memzone.h>
|
|
|
|
#include <rte_launch.h>
|
|
|
|
#include <rte_eal.h>
|
|
|
|
#include <rte_per_lcore.h>
|
|
|
|
#include <rte_lcore.h>
|
|
|
|
#include <rte_atomic.h>
|
|
|
|
#include <rte_branch_prediction.h>
|
|
|
|
#include <rte_ring.h>
|
|
|
|
#include <rte_mempool.h>
|
|
|
|
#include <rte_mbuf.h>
|
|
|
|
#include <rte_string_fns.h>
|
2013-06-03 00:00:00 +00:00
|
|
|
#include <rte_hexdump.h>
|
2015-07-30 16:22:17 +00:00
|
|
|
#include <rte_errno.h>
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ctrlmbuf constructor, given as a callback function to
|
|
|
|
* rte_mempool_create()
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
rte_ctrlmbuf_init(struct rte_mempool *mp,
|
2014-08-28 15:42:36 +00:00
|
|
|
__attribute__((unused)) void *opaque_arg,
|
|
|
|
void *_m,
|
|
|
|
__attribute__((unused)) unsigned i)
|
2012-09-04 12:54:00 +00:00
|
|
|
{
|
2014-09-11 13:15:38 +00:00
|
|
|
struct rte_mbuf *m = _m;
|
2014-08-28 15:42:36 +00:00
|
|
|
rte_pktmbuf_init(mp, opaque_arg, _m, i);
|
2014-09-11 13:15:38 +00:00
|
|
|
m->ol_flags |= CTRL_MBUF_FLAG;
|
2012-09-04 12:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pktmbuf pool constructor, given as a callback function to
|
|
|
|
* rte_mempool_create()
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg)
|
|
|
|
{
|
2015-04-22 09:57:18 +00:00
|
|
|
struct rte_pktmbuf_pool_private *user_mbp_priv, *mbp_priv;
|
|
|
|
struct rte_pktmbuf_pool_private default_mbp_priv;
|
2012-09-04 12:54:00 +00:00
|
|
|
uint16_t roomsz;
|
|
|
|
|
2016-04-22 12:21:26 +00:00
|
|
|
RTE_ASSERT(mp->elt_size >= sizeof(struct rte_mbuf));
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2015-04-22 09:57:18 +00:00
|
|
|
/* if no structure is provided, assume no mbuf private area */
|
|
|
|
user_mbp_priv = opaque_arg;
|
|
|
|
if (user_mbp_priv == NULL) {
|
|
|
|
default_mbp_priv.mbuf_priv_size = 0;
|
|
|
|
if (mp->elt_size > sizeof(struct rte_mbuf))
|
|
|
|
roomsz = mp->elt_size - sizeof(struct rte_mbuf);
|
|
|
|
else
|
|
|
|
roomsz = 0;
|
|
|
|
default_mbp_priv.mbuf_data_room_size = roomsz;
|
|
|
|
user_mbp_priv = &default_mbp_priv;
|
|
|
|
}
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2016-04-22 12:21:26 +00:00
|
|
|
RTE_ASSERT(mp->elt_size >= sizeof(struct rte_mbuf) +
|
2015-04-22 09:57:18 +00:00
|
|
|
user_mbp_priv->mbuf_data_room_size +
|
|
|
|
user_mbp_priv->mbuf_priv_size);
|
|
|
|
|
|
|
|
mbp_priv = rte_mempool_get_priv(mp);
|
|
|
|
memcpy(mbp_priv, user_mbp_priv, sizeof(*mbp_priv));
|
2012-09-04 12:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pktmbuf constructor, given as a callback function to
|
|
|
|
* rte_mempool_create().
|
|
|
|
* Set the fields of a packet mbuf to their default values.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
rte_pktmbuf_init(struct rte_mempool *mp,
|
|
|
|
__attribute__((unused)) void *opaque_arg,
|
|
|
|
void *_m,
|
|
|
|
__attribute__((unused)) unsigned i)
|
|
|
|
{
|
|
|
|
struct rte_mbuf *m = _m;
|
2015-04-22 09:57:25 +00:00
|
|
|
uint32_t mbuf_size, buf_len, priv_size;
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2015-04-22 09:57:25 +00:00
|
|
|
priv_size = rte_pktmbuf_priv_size(mp);
|
|
|
|
mbuf_size = sizeof(struct rte_mbuf) + priv_size;
|
2015-04-22 09:57:21 +00:00
|
|
|
buf_len = rte_pktmbuf_data_room_size(mp);
|
|
|
|
|
2016-04-22 12:21:26 +00:00
|
|
|
RTE_ASSERT(RTE_ALIGN(priv_size, RTE_MBUF_PRIV_ALIGN) == priv_size);
|
|
|
|
RTE_ASSERT(mp->elt_size >= mbuf_size);
|
|
|
|
RTE_ASSERT(buf_len <= UINT16_MAX);
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
memset(m, 0, mp->elt_size);
|
|
|
|
|
2015-04-22 09:57:25 +00:00
|
|
|
/* start of buffer is after mbuf structure and priv data */
|
|
|
|
m->priv_size = priv_size;
|
2015-04-22 09:57:21 +00:00
|
|
|
m->buf_addr = (char *)m + mbuf_size;
|
|
|
|
m->buf_physaddr = rte_mempool_virt2phy(mp, m) + mbuf_size;
|
2012-09-04 12:54:00 +00:00
|
|
|
m->buf_len = (uint16_t)buf_len;
|
|
|
|
|
|
|
|
/* keep some headroom between start of buffer and data */
|
2014-09-11 13:15:35 +00:00
|
|
|
m->data_off = RTE_MIN(RTE_PKTMBUF_HEADROOM, (uint16_t)m->buf_len);
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
/* init some constant fields */
|
|
|
|
m->pool = mp;
|
2014-08-28 15:42:37 +00:00
|
|
|
m->nb_segs = 1;
|
2014-08-28 15:42:38 +00:00
|
|
|
m->port = 0xff;
|
2012-09-04 12:54:00 +00:00
|
|
|
}
|
|
|
|
|
2015-04-22 09:57:23 +00:00
|
|
|
/* helper to create a mbuf pool */
|
|
|
|
struct rte_mempool *
|
|
|
|
rte_pktmbuf_pool_create(const char *name, unsigned n,
|
|
|
|
unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
|
|
|
|
int socket_id)
|
|
|
|
{
|
|
|
|
struct rte_pktmbuf_pool_private mbp_priv;
|
|
|
|
unsigned elt_size;
|
|
|
|
|
2015-07-30 16:22:17 +00:00
|
|
|
if (RTE_ALIGN(priv_size, RTE_MBUF_PRIV_ALIGN) != priv_size) {
|
|
|
|
RTE_LOG(ERR, MBUF, "mbuf priv_size=%u is not aligned\n",
|
|
|
|
priv_size);
|
|
|
|
rte_errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-04-22 09:57:23 +00:00
|
|
|
elt_size = sizeof(struct rte_mbuf) + (unsigned)priv_size +
|
|
|
|
(unsigned)data_room_size;
|
|
|
|
mbp_priv.mbuf_data_room_size = data_room_size;
|
|
|
|
mbp_priv.mbuf_priv_size = priv_size;
|
|
|
|
|
|
|
|
return rte_mempool_create(name, n, elt_size,
|
|
|
|
cache_size, sizeof(struct rte_pktmbuf_pool_private),
|
|
|
|
rte_pktmbuf_pool_init, &mbp_priv, rte_pktmbuf_init, NULL,
|
|
|
|
socket_id, 0);
|
|
|
|
}
|
|
|
|
|
2012-09-04 12:54:00 +00:00
|
|
|
/* do some sanity checks on a mbuf: panic if it fails */
|
|
|
|
void
|
2014-08-28 15:42:36 +00:00
|
|
|
rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header)
|
2012-09-04 12:54:00 +00:00
|
|
|
{
|
|
|
|
const struct rte_mbuf *m_seg;
|
|
|
|
unsigned nb_segs;
|
|
|
|
|
|
|
|
if (m == NULL)
|
|
|
|
rte_panic("mbuf is NULL\n");
|
|
|
|
|
|
|
|
/* generic checks */
|
|
|
|
if (m->pool == NULL)
|
|
|
|
rte_panic("bad mbuf pool\n");
|
|
|
|
if (m->buf_physaddr == 0)
|
|
|
|
rte_panic("bad phys addr\n");
|
|
|
|
if (m->buf_addr == NULL)
|
|
|
|
rte_panic("bad virt addr\n");
|
|
|
|
|
|
|
|
uint16_t cnt = rte_mbuf_refcnt_read(m);
|
|
|
|
if ((cnt == 0) || (cnt == UINT16_MAX))
|
|
|
|
rte_panic("bad ref cnt\n");
|
|
|
|
|
2014-08-28 15:42:36 +00:00
|
|
|
/* nothing to check for sub-segments */
|
|
|
|
if (is_header == 0)
|
2012-09-04 12:54:00 +00:00
|
|
|
return;
|
|
|
|
|
2014-08-28 15:42:37 +00:00
|
|
|
nb_segs = m->nb_segs;
|
2014-08-28 15:42:36 +00:00
|
|
|
m_seg = m;
|
|
|
|
while (m_seg && nb_segs != 0) {
|
2014-08-28 15:42:37 +00:00
|
|
|
m_seg = m_seg->next;
|
2014-08-28 15:42:36 +00:00
|
|
|
nb_segs--;
|
2012-09-04 12:54:00 +00:00
|
|
|
}
|
2014-08-28 15:42:36 +00:00
|
|
|
if (nb_segs != 0)
|
|
|
|
rte_panic("bad nb_segs\n");
|
2012-09-04 12:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* dump a mbuf on console */
|
|
|
|
void
|
2014-05-02 23:42:56 +00:00
|
|
|
rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len)
|
2012-09-04 12:54:00 +00:00
|
|
|
{
|
|
|
|
unsigned int len;
|
|
|
|
unsigned nb_segs;
|
|
|
|
|
2014-08-28 15:42:36 +00:00
|
|
|
__rte_mbuf_sanity_check(m, 1);
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2014-05-02 23:42:56 +00:00
|
|
|
fprintf(f, "dump mbuf at 0x%p, phys=%"PRIx64", buf_len=%u\n",
|
2012-09-04 12:54:00 +00:00
|
|
|
m, (uint64_t)m->buf_physaddr, (unsigned)m->buf_len);
|
2014-09-11 13:15:37 +00:00
|
|
|
fprintf(f, " pkt_len=%"PRIu32", ol_flags=%"PRIx64", nb_segs=%u, "
|
2014-08-28 15:42:37 +00:00
|
|
|
"in_port=%u\n", m->pkt_len, m->ol_flags,
|
2014-08-28 15:42:38 +00:00
|
|
|
(unsigned)m->nb_segs, (unsigned)m->port);
|
2014-08-28 15:42:37 +00:00
|
|
|
nb_segs = m->nb_segs;
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
while (m && nb_segs != 0) {
|
2014-08-28 15:42:36 +00:00
|
|
|
__rte_mbuf_sanity_check(m, 0);
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2014-05-02 23:42:56 +00:00
|
|
|
fprintf(f, " segment at 0x%p, data=0x%p, data_len=%u\n",
|
2014-09-11 13:15:35 +00:00
|
|
|
m, rte_pktmbuf_mtod(m, void *), (unsigned)m->data_len);
|
2012-09-04 12:54:00 +00:00
|
|
|
len = dump_len;
|
2014-08-28 15:42:37 +00:00
|
|
|
if (len > m->data_len)
|
|
|
|
len = m->data_len;
|
2012-09-04 12:54:00 +00:00
|
|
|
if (len != 0)
|
2014-09-11 13:15:35 +00:00
|
|
|
rte_hexdump(f, NULL, rte_pktmbuf_mtod(m, void *), len);
|
2012-09-04 12:54:00 +00:00
|
|
|
dump_len -= len;
|
2014-08-28 15:42:37 +00:00
|
|
|
m = m->next;
|
2012-09-04 12:54:00 +00:00
|
|
|
nb_segs --;
|
|
|
|
}
|
|
|
|
}
|
2014-11-26 15:04:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the name of a RX offload flag. Must be kept synchronized with flag
|
|
|
|
* definitions in rte_mbuf.h.
|
|
|
|
*/
|
|
|
|
const char *rte_get_rx_ol_flag_name(uint64_t mask)
|
|
|
|
{
|
|
|
|
switch (mask) {
|
|
|
|
case PKT_RX_VLAN_PKT: return "PKT_RX_VLAN_PKT";
|
|
|
|
case PKT_RX_RSS_HASH: return "PKT_RX_RSS_HASH";
|
|
|
|
case PKT_RX_FDIR: return "PKT_RX_FDIR";
|
|
|
|
case PKT_RX_L4_CKSUM_BAD: return "PKT_RX_L4_CKSUM_BAD";
|
|
|
|
case PKT_RX_IP_CKSUM_BAD: return "PKT_RX_IP_CKSUM_BAD";
|
2016-03-10 02:42:13 +00:00
|
|
|
case PKT_RX_EIP_CKSUM_BAD: return "PKT_RX_EIP_CKSUM_BAD";
|
2014-11-26 15:04:48 +00:00
|
|
|
/* case PKT_RX_OVERSIZE: return "PKT_RX_OVERSIZE"; */
|
|
|
|
/* case PKT_RX_HBUF_OVERFLOW: return "PKT_RX_HBUF_OVERFLOW"; */
|
|
|
|
/* case PKT_RX_RECIP_ERR: return "PKT_RX_RECIP_ERR"; */
|
|
|
|
/* case PKT_RX_MAC_ERR: return "PKT_RX_MAC_ERR"; */
|
mbuf: add new Rx flags for stripped VLAN
The behavior of PKT_RX_VLAN_PKT was not very well defined, resulting in
PMDs not advertising the same flags in similar conditions.
Following discussion in [1], introduce 2 new flags PKT_RX_VLAN_STRIPPED
and PKT_RX_QINQ_STRIPPED that are better defined:
PKT_RX_VLAN_STRIPPED: a vlan has been stripped by the hardware and its
tci is saved in mbuf->vlan_tci. This can only happen if vlan stripping
is enabled in the RX configuration of the PMD.
For now, the old flag PKT_RX_VLAN_PKT is kept but marked as deprecated.
It should be removed from applications and PMDs in a future revision.
This patch also updates the drivers. For PKT_RX_VLAN_PKT:
- e1000, enic, i40e, mlx5, nfp, vmxnet3: done, PKT_RX_VLAN_PKT already
had the same meaning than PKT_RX_VLAN_STRIPPED, minor update is
required.
- fm10k: done, PKT_RX_VLAN_PKT already had the same meaning than
PKT_RX_VLAN_STRIPPED, and vlan stripping is always enabled on fm10k.
- ixgbe: modification done (vector and normal), the old flag was set
when a vlan was recognized, even if vlan stripping was disabled.
- the other drivers do not support vlan stripping.
For PKT_RX_QINQ_PKT, it was only supported on i40e, and the behavior was
already correct, so we can reuse the same bit value for
PKT_RX_QINQ_STRIPPED.
[1] http://dpdk.org/ml/archives/dev/2016-April/037837.html,
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
2016-06-15 11:48:07 +00:00
|
|
|
case PKT_RX_VLAN_STRIPPED: return "PKT_RX_VLAN_STRIPPED";
|
2014-11-26 15:04:48 +00:00
|
|
|
case PKT_RX_IEEE1588_PTP: return "PKT_RX_IEEE1588_PTP";
|
|
|
|
case PKT_RX_IEEE1588_TMST: return "PKT_RX_IEEE1588_TMST";
|
mbuf: add new Rx flags for stripped VLAN
The behavior of PKT_RX_VLAN_PKT was not very well defined, resulting in
PMDs not advertising the same flags in similar conditions.
Following discussion in [1], introduce 2 new flags PKT_RX_VLAN_STRIPPED
and PKT_RX_QINQ_STRIPPED that are better defined:
PKT_RX_VLAN_STRIPPED: a vlan has been stripped by the hardware and its
tci is saved in mbuf->vlan_tci. This can only happen if vlan stripping
is enabled in the RX configuration of the PMD.
For now, the old flag PKT_RX_VLAN_PKT is kept but marked as deprecated.
It should be removed from applications and PMDs in a future revision.
This patch also updates the drivers. For PKT_RX_VLAN_PKT:
- e1000, enic, i40e, mlx5, nfp, vmxnet3: done, PKT_RX_VLAN_PKT already
had the same meaning than PKT_RX_VLAN_STRIPPED, minor update is
required.
- fm10k: done, PKT_RX_VLAN_PKT already had the same meaning than
PKT_RX_VLAN_STRIPPED, and vlan stripping is always enabled on fm10k.
- ixgbe: modification done (vector and normal), the old flag was set
when a vlan was recognized, even if vlan stripping was disabled.
- the other drivers do not support vlan stripping.
For PKT_RX_QINQ_PKT, it was only supported on i40e, and the behavior was
already correct, so we can reuse the same bit value for
PKT_RX_QINQ_STRIPPED.
[1] http://dpdk.org/ml/archives/dev/2016-April/037837.html,
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
2016-06-15 11:48:07 +00:00
|
|
|
case PKT_RX_QINQ_STRIPPED: return "PKT_RX_QINQ_STRIPPED";
|
2014-11-26 15:04:48 +00:00
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the name of a TX offload flag. Must be kept synchronized with flag
|
|
|
|
* definitions in rte_mbuf.h.
|
|
|
|
*/
|
|
|
|
const char *rte_get_tx_ol_flag_name(uint64_t mask)
|
|
|
|
{
|
|
|
|
switch (mask) {
|
|
|
|
case PKT_TX_VLAN_PKT: return "PKT_TX_VLAN_PKT";
|
|
|
|
case PKT_TX_IP_CKSUM: return "PKT_TX_IP_CKSUM";
|
|
|
|
case PKT_TX_TCP_CKSUM: return "PKT_TX_TCP_CKSUM";
|
|
|
|
case PKT_TX_SCTP_CKSUM: return "PKT_TX_SCTP_CKSUM";
|
|
|
|
case PKT_TX_UDP_CKSUM: return "PKT_TX_UDP_CKSUM";
|
|
|
|
case PKT_TX_IEEE1588_TMST: return "PKT_TX_IEEE1588_TMST";
|
2014-11-26 15:04:52 +00:00
|
|
|
case PKT_TX_TCP_SEG: return "PKT_TX_TCP_SEG";
|
2014-12-02 15:06:06 +00:00
|
|
|
case PKT_TX_IPV4: return "PKT_TX_IPV4";
|
|
|
|
case PKT_TX_IPV6: return "PKT_TX_IPV6";
|
|
|
|
case PKT_TX_OUTER_IP_CKSUM: return "PKT_TX_OUTER_IP_CKSUM";
|
|
|
|
case PKT_TX_OUTER_IPV4: return "PKT_TX_OUTER_IPV4";
|
|
|
|
case PKT_TX_OUTER_IPV6: return "PKT_TX_OUTER_IPV6";
|
2014-11-26 15:04:48 +00:00
|
|
|
default: return NULL;
|
|
|
|
}
|
|
|
|
}
|