eal/x86: remove atomic header include loop
[dpdk.git] / app / test / test_bpf.c
index 2d755a8..805cce6 100644 (file)
 #include <rte_random.h>
 #include <rte_byteorder.h>
 #include <rte_errno.h>
+#include "test.h"
+
+#if !defined(RTE_LIB_BPF)
+
+static int
+test_bpf(void)
+{
+       printf("BPF not supported, skipping test\n");
+       return TEST_SKIPPED;
+}
+
+#else
+
 #include <rte_bpf.h>
 #include <rte_ether.h>
 #include <rte_ip.h>
 
-#include "test.h"
 
 /*
  * Basic functional tests for librte_bpf.
@@ -3248,6 +3260,8 @@ test_bpf(void)
        return rc;
 }
 
+#endif /* !RTE_LIB_BPF */
+
 REGISTER_TEST_COMMAND(bpf_autotest, test_bpf);
 
 #ifdef RTE_HAS_LIBPCAP
@@ -3259,8 +3273,10 @@ test_bpf_dump(struct bpf_program *cbf, const struct rte_bpf_prm *prm)
        printf("cBPF program (%u insns)\n", cbf->bf_len);
        bpf_dump(cbf, 1);
 
-       printf("\neBPF program (%u insns)\n", prm->nb_ins);
-       rte_bpf_dump(stdout, prm->ins, prm->nb_ins);
+       if (prm != NULL) {
+               printf("\neBPF program (%u insns)\n", prm->nb_ins);
+               rte_bpf_dump(stdout, prm->ins, prm->nb_ins);
+       }
 }
 
 static int