net/thunderx: fix build on FreeBSD
authorJerin Jacob <jerin.jacob@caviumnetworks.com>
Sun, 19 Mar 2017 14:48:47 +0000 (20:18 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 4 Apr 2017 16:59:41 +0000 (18:59 +0200)
SIMPLEQ_* operations are not available in FreeBSD. Replacing
with equivalent STAILQ_* operations.

Fixes: f2546f8e51b8 ("net/thunderx/base: add functions to store qsets")

Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
drivers/net/thunderx/base/nicvf_bsvf.c
drivers/net/thunderx/base/nicvf_bsvf.h
drivers/net/thunderx/nicvf_ethdev.c

index 9e028a3..49a2646 100644 (file)
@@ -37,7 +37,7 @@
 #include "nicvf_bsvf.h"
 #include "nicvf_plat.h"
 
-static SIMPLEQ_HEAD(, svf_entry) head = SIMPLEQ_HEAD_INITIALIZER(head);
+static STAILQ_HEAD(, svf_entry) head = STAILQ_HEAD_INITIALIZER(head);
 
 void
 nicvf_bsvf_push(struct svf_entry *entry)
@@ -45,7 +45,7 @@ nicvf_bsvf_push(struct svf_entry *entry)
        assert(entry != NULL);
        assert(entry->vf != NULL);
 
-       SIMPLEQ_INSERT_TAIL(&head, entry, next);
+       STAILQ_INSERT_TAIL(&head, entry, next);
 }
 
 struct svf_entry *
@@ -53,14 +53,14 @@ nicvf_bsvf_pop(void)
 {
        struct svf_entry *entry;
 
-       assert(!SIMPLEQ_EMPTY(&head));
+       assert(!STAILQ_EMPTY(&head));
 
-       entry = SIMPLEQ_FIRST(&head);
+       entry = STAILQ_FIRST(&head);
 
        assert(entry != NULL);
        assert(entry->vf != NULL);
 
-       SIMPLEQ_REMOVE_HEAD(&head, next);
+       STAILQ_REMOVE_HEAD(&head, next);
 
        return entry;
 }
@@ -68,5 +68,5 @@ nicvf_bsvf_pop(void)
 int
 nicvf_bsvf_empty(void)
 {
-       return SIMPLEQ_EMPTY(&head);
+       return STAILQ_EMPTY(&head);
 }
index 5d5a25e..fb9b248 100644 (file)
@@ -41,7 +41,7 @@ struct nicvf;
  * The base queue structure to hold secondary qsets.
  */
 struct svf_entry {
-       SIMPLEQ_ENTRY(svf_entry) next; /**< Next element's pointer */
+       STAILQ_ENTRY(svf_entry) next; /**< Next element's pointer */
        struct nicvf *vf;              /**< Holder of a secondary qset */
 };
 
index 871b4f0..5f34237 100644 (file)
@@ -41,7 +41,6 @@
 #include <inttypes.h>
 #include <netinet/in.h>
 #include <sys/queue.h>
-#include <sys/timerfd.h>
 
 #include <rte_alarm.h>
 #include <rte_atomic.h>