tailq: remove unneeded inclusions
[dpdk.git] / examples / multi_process / client_server_mp / mp_server / init.c
index 30518c0..aadee76 100644 (file)
@@ -42,7 +42,6 @@
 #include <rte_common.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
-#include <rte_tailq.h>
 #include <rte_eal.h>
 #include <rte_byteorder.h>
 #include <rte_atomic.h>
@@ -68,7 +67,6 @@
 #include "common.h"
 #include "args.h"
 #include "init.h"
-#include "main.h"
 
 #define MBUFS_PER_CLIENT 1536
 #define MBUFS_PER_PORT 1536
 
 #define NO_FLAGS 0
 
-/*
- * RX and TX Prefetch, Host, and Write-back threshold values should be
- * carefully set for optimal performance. Consult the network
- * controller's datasheet and supporting DPDK documentation for guidance
- * on how these parameters should be set.
- */
-/* Default configuration for rx and tx thresholds etc. */
-/*
- * These default values are optimized for use with the Intel(R) 82599 10 GbE
- * Controller and the DPDK ixgbe PMD. Consider using other values for other
- * network controllers and/or network drivers.
- */
-#define MP_DEFAULT_PTHRESH 36
-#define MP_DEFAULT_RX_HTHRESH 8
-#define MP_DEFAULT_TX_HTHRESH 0
-#define MP_DEFAULT_WTHRESH 0
-
-static const struct rte_eth_rxconf rx_conf_default = {
-               .rx_thresh = {
-                               .pthresh = MP_DEFAULT_PTHRESH,
-                               .hthresh = MP_DEFAULT_RX_HTHRESH,
-                               .wthresh = MP_DEFAULT_WTHRESH,
-               },
-};
-
-static const struct rte_eth_txconf tx_conf_default = {
-               .tx_thresh = {
-                               .pthresh = MP_DEFAULT_PTHRESH,
-                               .hthresh = MP_DEFAULT_TX_HTHRESH,
-                               .wthresh = MP_DEFAULT_WTHRESH,
-               },
-               .tx_free_thresh = 0, /* Use PMD default values */
-               .tx_rs_thresh = 0, /* Use PMD default values */
-};
-
 /* The mbuf pool for packet rx */
 struct rte_mempool *pktmbuf_pool;
 
@@ -183,13 +146,15 @@ init_port(uint8_t port_num)
 
        for (q = 0; q < rx_rings; q++) {
                retval = rte_eth_rx_queue_setup(port_num, q, rx_ring_size,
-                               rte_eth_dev_socket_id(port_num), &rx_conf_default, pktmbuf_pool);
+                               rte_eth_dev_socket_id(port_num),
+                               NULL, pktmbuf_pool);
                if (retval < 0) return retval;
        }
 
        for ( q = 0; q < tx_rings; q ++ ) {
                retval = rte_eth_tx_queue_setup(port_num, q, tx_ring_size,
-                               rte_eth_dev_socket_id(port_num), &tx_conf_default);
+                               rte_eth_dev_socket_id(port_num),
+                               NULL);
                if (retval < 0) return retval;
        }