[dpdk-dev] [PATCH] lib/librte_kni: fix the type for mac address
Jie Pan
panjie5 at jd.com
Thu Jan 24 04:53:03 CET 2019
The type for mac address in struct rte_kni_conf should be unsigned.
Signed-off-by: Jie Pan <panjie5 at jd.com>
---
lib/librte_kni/rte_kni.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/librte_kni/rte_kni.h b/lib/librte_kni/rte_kni.h
index 02ca43b..d44496c 100644
--- a/lib/librte_kni/rte_kni.h
+++ b/lib/librte_kni/rte_kni.h
@@ -68,7 +68,7 @@ struct rte_kni_conf {
__extension__
uint8_t force_bind : 1; /* Flag to bind kernel thread */
- char mac_addr[ETHER_ADDR_LEN]; /* MAC address assigned to KNI */
+ uint8_t mac_addr[ETHER_ADDR_LEN]; /* MAC address assigned to KNI */
uint16_t mtu;
};
--
1.8.3.1
More information about the dev
mailing list