From f5817145486df18f92072212117a713cec1e4219 Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Sun, 30 Oct 2016 16:10:59 +0200 Subject: add ifdef guard to .h file remove UUID from TUI STF Python API: show newlines instead of "\n\n\n" in Exception message STF Python API: remove "During handling of the above exception, another exception occurred:" in Python3.3+ dpdk_nic_bind.py: ensure needed PATH exists for lspci etc. t-rex-64: remove "stty: standard input: Inappropriate ioctl for device" t-rex-64: remove "cat: write error: Broken pipe" Signed-off-by: Yaroslav Brustinov --- src/pal/linux/rte_ethdev_includes.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/pal') diff --git a/src/pal/linux/rte_ethdev_includes.h b/src/pal/linux/rte_ethdev_includes.h index de115d77..e957b68b 100644 --- a/src/pal/linux/rte_ethdev_includes.h +++ b/src/pal/linux/rte_ethdev_includes.h @@ -1,3 +1,6 @@ +#ifndef __RTE_ETHDEV_INCLUDES_H__ +#define __RTE_ETHDEV_INCLUDES_H__ + struct rte_eth_link { int link_autoneg; int link_speed; @@ -21,3 +24,4 @@ struct rte_eth_fc_conf { struct rte_eth_dev_info { }; +#endif /* __RTE_ETHDEV_INCLUDES_H__ */ -- cgit 1.2.3-korg