eal/x86: move header file for vector instructions
[dpdk.git] / examples / l3fwd / main.c
index 918f2cb..90e177f 100644 (file)
 #include <getopt.h>
 
 #include <rte_common.h>
-#include <rte_common_vect.h>
+#include <rte_vect.h>
 #include <rte_byteorder.h>
 #include <rte_log.h>
 #include <rte_memory.h>
 #include <rte_memcpy.h>
 #include <rte_memzone.h>
-#include <rte_tailq.h>
 #include <rte_eal.h>
 #include <rte_per_lcore.h>
 #include <rte_launch.h>
@@ -1170,7 +1169,7 @@ processx4_step2(const struct lcore_conf *qconf, __m128i dip, uint32_t flag,
        if (likely(flag != 0)) {
                rte_lpm_lookupx4(qconf->ipv4_lookup_struct, dip, dprt, portid);
        } else {
-               dst.m = dip;
+               dst.x = dip;
                dprt[0] = get_dst_port(qconf, pkt[0], dst.u32[0], portid);
                dprt[1] = get_dst_port(qconf, pkt[1], dst.u32[1], portid);
                dprt[2] = get_dst_port(qconf, pkt[2], dst.u32[2], portid);