]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_kni/rte_kni_fifo.h
app/crypto-perf: fix build with -Ofast
[dpdk.git] / lib / librte_kni / rte_kni_fifo.h
index 8cb858739d22c8e9b706a805c1c5be779c35ae5d..c7cd5c26cdf56b261635fa433fbfaa323ec48761 100644 (file)
@@ -91,3 +91,12 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, unsigned num)
        fifo->read = new_read;
        return i;
 }
+
+/**
+ * Get the num of elements in the fifo
+ */
+static inline uint32_t
+kni_fifo_count(struct rte_kni_fifo *fifo)
+{
+       return (fifo->len + fifo->write - fifo->read) & (fifo->len - 1);
+}