aboutsummaryrefslogtreecommitdiff
path: root/lib/netdev-odp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/netdev-odp.c')
-rw-r--r--lib/netdev-odp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/netdev-odp.c b/lib/netdev-odp.c
index f1c8af59d..09405b781 100644
--- a/lib/netdev-odp.c
+++ b/lib/netdev-odp.c
@@ -81,7 +81,6 @@ struct netdev_odp {
struct netdev_rxq_odp {
struct netdev_rxq up;
odp_buffer_t odp_buf; /* odp_buffer_t that holds this struct */
- odp_queue_t queue_id;
};
/* We need a pool of buffers that hold netdev and rxq structures */
@@ -585,8 +584,6 @@ netdev_odp_rxq_construct(struct netdev_rxq *rxq_)
struct netdev_rxq_odp *rx = netdev_rxq_odp_cast(rxq_);
struct netdev_odp *netdev = netdev_odp_cast(rx->up.netdev);
- rx->queue_id = odp_pktio_inq_getdef(netdev->pktio);
-
return 0;
}