tap_v2: convert ring size from network to host order

Change-Id: Ica1be5c75c83ac64c7063bfeff1f4d00702a00e1
Signed-off-by: Milan Lenco <milan.lenco@pantheon.tech>
This commit is contained in:
Milan Lenco
2017-12-05 12:18:15 +01:00
committed by Damjan Marion
parent 99214ce0ae
commit 2aef64f04e

View File

@ -65,8 +65,8 @@ vl_api_tap_create_v2_t_handler (vl_api_tap_create_v2_t * mp)
clib_memcpy (ap->hw_addr, mp->mac_address, 6);
ap->hw_addr_set = 1;
}
ap->rx_ring_sz = mp->rx_ring_sz;
ap->tx_ring_sz = mp->tx_ring_sz;
ap->rx_ring_sz = ntohs (mp->rx_ring_sz);
ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
ap->sw_if_index = (u32) ~ 0;
if (mp->host_namespace_set)