mk: build with _GNU_SOURCE defined by default
[dpdk.git] / examples / ip_pipeline / link.c
index 805c2eb..787eb86 100644 (file)
@@ -36,13 +36,18 @@ link_find(const char *name)
        return NULL;
 }
 
+struct link *
+link_next(struct link *link)
+{
+       return (link == NULL) ? TAILQ_FIRST(&link_list) : TAILQ_NEXT(link, node);
+}
+
 static struct rte_eth_conf port_conf_default = {
        .link_speeds = 0,
        .rxmode = {
                .mq_mode = ETH_MQ_RX_NONE,
                .max_rx_pkt_len = 9000, /* Jumbo frame max packet len */
                .split_hdr_size = 0, /* Header split buffer size */
-               .offloads = DEV_RX_OFFLOAD_CRC_STRIP,
        },
        .rx_adv_conf = {
                .rss_conf = {
@@ -152,12 +157,9 @@ link_create(const char *name, struct link_params *params)
        memcpy(&port_conf, &port_conf_default, sizeof(port_conf));
        if (rss) {
                port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
-               if (port_info.flow_type_rss_offloads & ETH_RSS_IPV4)
-                       port_conf.rx_adv_conf.rss_conf.rss_hf |=
-                               ETH_RSS_IPV4;
-               if (port_info.flow_type_rss_offloads & ETH_RSS_IPV6)
-                       port_conf.rx_adv_conf.rss_conf.rss_hf |=
-                               ETH_RSS_IPV6;
+               port_conf.rx_adv_conf.rss_conf.rss_hf =
+                       (ETH_RSS_IP | ETH_RSS_TCP | ETH_RSS_UDP) &
+                       port_info.flow_type_rss_offloads;
        }
 
        cpu_id = (uint32_t) rte_eth_dev_socket_id(port_id);