diff options
Diffstat (limited to 'src/pal/linux/rte_ethdev_includes.h')
-rw-r--r-- | src/pal/linux/rte_ethdev_includes.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/pal/linux/rte_ethdev_includes.h b/src/pal/linux/rte_ethdev_includes.h new file mode 100644 index 00000000..e957b68b --- /dev/null +++ b/src/pal/linux/rte_ethdev_includes.h @@ -0,0 +1,27 @@ +#ifndef __RTE_ETHDEV_INCLUDES_H__ +#define __RTE_ETHDEV_INCLUDES_H__ + +struct rte_eth_link { + int link_autoneg; + int link_speed; + int link_duplex; + int link_status; +}; + + +enum rte_eth_fc_mode { +}; + +struct rte_eth_xstat { +}; + +struct rte_eth_xstat_name { +}; + +struct rte_eth_fc_conf { +}; + +struct rte_eth_dev_info { +}; + +#endif /* __RTE_ETHDEV_INCLUDES_H__ */ |