[dpdk-dev] [PATCH] ixgbe_vf: Fix getting link state

2014-12-18 Thread Choonho Son
DPDK pmd code should have the consistency with original network device driver code. Linux kernel driver---> DPDK pmd driver --- ixgbevf_check_mac_link_vf()ixgbe_check_mac_link_vf() at ixgbevf/vf.c

[dpdk-dev] [PATCH] ixgbe_vf: Fix getting link state

2014-12-17 Thread Thomas Monjalon
2014-12-17 13:22, Balazs Nemeth: > This patch fixes checking the link state of a virtual function. If the > state has already been checked, it does not need to be checked > again. Previously, get_link_status in the ixgbe_hw struct was > used to track if the information had already been updated, but

[dpdk-dev] [PATCH] ixgbe_vf: Fix getting link state

2014-12-17 Thread Balazs Nemeth
This patch fixes checking the link state of a virtual function. If the state has already been checked, it does not need to be checked again. Previously, get_link_status in the ixgbe_hw struct was used to track if the information had already been updated, but this field was always set to false. Sig