X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fl2fwd-cat%2Fl2fwd-cat.c;h=6e16705e99318286ccd69f98ef9b031cb2aa8cd5;hb=68629be3a622ee53cd5b40c8447ae9b083ff3f6c;hp=8e7eb3248589e6d6be73e8bfcbe0acd0269bb6d0;hpb=59a50c6a9ace0dc736d71e75267a1cc2127e7938;p=dpdk.git diff --git a/examples/l2fwd-cat/l2fwd-cat.c b/examples/l2fwd-cat/l2fwd-cat.c index 8e7eb32485..6e16705e99 100644 --- a/examples/l2fwd-cat/l2fwd-cat.c +++ b/examples/l2fwd-cat/l2fwd-cat.c @@ -19,10 +19,6 @@ #define MBUF_CACHE_SIZE 250 #define BURST_SIZE 32 -static const struct rte_eth_conf port_conf_default = { - .rxmode = { .max_rx_pkt_len = RTE_ETHER_MAX_LEN } -}; - /* l2fwd-cat.c: CAT enabled, basic DPDK skeleton forwarding example. */ /* @@ -32,7 +28,7 @@ static const struct rte_eth_conf port_conf_default = { static inline int port_init(uint16_t port, struct rte_mempool *mbuf_pool) { - struct rte_eth_conf port_conf = port_conf_default; + struct rte_eth_conf port_conf; const uint16_t rx_rings = 1, tx_rings = 1; int retval; uint16_t q; @@ -42,6 +38,8 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool) if (!rte_eth_dev_is_valid_port(port)) return -1; + memset(&port_conf, 0, sizeof(struct rte_eth_conf)); + /* Configure the Ethernet device. */ retval = rte_eth_dev_configure(port, rx_rings, tx_rings, &port_conf); if (retval != 0) @@ -80,10 +78,7 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool) printf("Port %u MAC: %02" PRIx8 " %02" PRIx8 " %02" PRIx8 " %02" PRIx8 " %02" PRIx8 " %02" PRIx8 "\n", - port, - addr.addr_bytes[0], addr.addr_bytes[1], - addr.addr_bytes[2], addr.addr_bytes[3], - addr.addr_bytes[4], addr.addr_bytes[5]); + port, RTE_ETHER_ADDR_BYTES(&addr)); /* Enable RX in promiscuous mode for the Ethernet device. */ retval = rte_eth_promiscuous_enable(port); @@ -158,10 +153,11 @@ main(int argc, char *argv[]) unsigned nb_ports; uint16_t portid; - /* Initialize the Environment Abstraction Layer (EAL). */ + /* Initialize the Environment Abstraction Layer (EAL). 8< */ int ret = rte_eal_init(argc, argv); if (ret < 0) rte_exit(EXIT_FAILURE, "Error with EAL initialization\n"); + /* >8 End of initialization the Environment Abstraction Layer (EAL). */ argc -= ret; argv += ret; @@ -170,9 +166,12 @@ main(int argc, char *argv[]) * Initialize the PQoS library and configure CAT. * Please see l2fwd-cat documentation for more info. */ + + /* Initialize the PQoS. 8< */ ret = cat_init(argc, argv); if (ret < 0) rte_exit(EXIT_FAILURE, "PQOS: L3CA init failed!\n"); + /* >8 End of initialization of PQoS. */ argc -= ret; argv += ret;