New upstream version 17.11-rc3
[deb_dpdk.git] / lib / librte_kni / rte_kni.h
index 37deb47..d195079 100644 (file)
@@ -63,13 +63,13 @@ struct rte_mbuf;
  * Structure which has the function pointers for KNI interface.
  */
 struct rte_kni_ops {
-       uint8_t port_id; /* Port ID */
+       uint16_t port_id; /* Port ID */
 
        /* Pointer to function of changing MTU */
-       int (*change_mtu)(uint8_t port_id, unsigned new_mtu);
+       int (*change_mtu)(uint16_t port_id, unsigned int new_mtu);
 
        /* Pointer to function of configuring network interface */
-       int (*config_network_if)(uint8_t port_id, uint8_t if_up);
+       int (*config_network_if)(uint16_t port_id, uint8_t if_up);
 };
 
 /**
@@ -118,7 +118,7 @@ void rte_kni_init(unsigned int max_kni_ifaces);
  * elements for each KNI interface allocated.
  *
  * @param pktmbuf_pool
- *  The mempool for allocting mbufs for packets.
+ *  The mempool for allocating mbufs for packets.
  * @param conf
  *  The pointer to the configurations of the KNI device.
  * @param ops