aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_packet_netmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-generic/include/odp_packet_netmap.h')
-rw-r--r--platform/linux-generic/include/odp_packet_netmap.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/linux-generic/include/odp_packet_netmap.h b/platform/linux-generic/include/odp_packet_netmap.h
index bb81f5f85..bd3efdcf5 100644
--- a/platform/linux-generic/include/odp_packet_netmap.h
+++ b/platform/linux-generic/include/odp_packet_netmap.h
@@ -19,6 +19,12 @@
#define NM_MAX_DESC 64
+/** netmap runtime configuration options */
+typedef struct {
+ int nr_rx_slots;
+ int nr_tx_slots;
+} netmap_opt_t;
+
/** Ring for mapping pktin/pktout queues to netmap descriptors */
struct netmap_ring_t {
unsigned first; /**< Index of first netmap descriptor */
@@ -61,6 +67,7 @@ typedef struct {
netmap_ring_t rx_desc_ring[PKTIO_MAX_QUEUES];
/** mapping of pktout queues to netmap tx descriptors */
netmap_ring_t tx_desc_ring[PKTIO_MAX_QUEUES];
+ netmap_opt_t opt; /**< options */
} pkt_netmap_t;
#endif