acl-plugin: refactor the "show acl-plugin" CLI, use vlib_cli_output() vs. format()
[vpp.git] / src / plugins / dpdk / hqos / hqos.c
index ca1bdaf..c9b8565 100644 (file)
@@ -29,7 +29,6 @@
 #include <vnet/ethernet/ethernet.h>
 #include <dpdk/device/dpdk.h>
 
-#include <vlib/unix/physmem.h>
 #include <vlib/pci/pci.h>
 #include <vlibmemory/api.h>
 #include <vlibmemory/vl_memory_msg_enum.h>     /* enumerate all vlib messages */
@@ -430,7 +429,7 @@ dpdk_hqos_thread_internal_hqos_dbg_bypass (vlib_main_t * vm)
          pkts_enq_len += rte_ring_sc_dequeue_burst (swq,
                                                     (void **)
                                                     &pkts_enq[pkts_enq_len],
-                                                    hqos->hqos_burst_enq);
+                                                    hqos->hqos_burst_enq, 0);
 
          /* Get next SWQ for this device */
          swq_pos++;
@@ -521,7 +520,7 @@ dpdk_hqos_thread_internal (vlib_main_t * vm)
          pkts_enq_len += rte_ring_sc_dequeue_burst (swq,
                                                     (void **)
                                                     &pkts_enq[pkts_enq_len],
-                                                    hqos->hqos_burst_enq);
+                                                    hqos->hqos_burst_enq, 0);
 
          /* Get next SWQ for this device */
          swq_pos++;