ethdev: fix link status query
authorShahaf Shuler <shahafs@mellanox.com>
Tue, 10 Apr 2018 06:16:31 +0000 (09:16 +0300)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 13 Apr 2018 22:41:44 +0000 (00:41 +0200)
commitb9bd0f09fa15b9dd6c70c469b45d215f494cab97
treeb474fbb5290abea10bee79f411361d1201d70ca8
parentcd8c7c7ce241d2ea7c059a9df07caa9411ef19ed
ethdev: fix link status query

When application works with LSC interrupts the ethdev layer skips
the PMD callback and update according to the link status exists on
device data. It is because it assumes the link status on the device data
is the correct one since any link change is processed by the application.

As multiple PMDs install the link status interrupt handler only on port
start and uninstall it on port stop, the link status may be incorrect in
case the query is called after port stop or before port start.

Fixing the query implementation to use the PMD callback for such cases.

Fixes: b77d21cc2364 ("ethdev: add link status get/set helper functions")
Cc: stable@dpdk.org
Signed-off-by: Shahaf Shuler <shahafs@mellanox.com>
Acked-by: Nelio Laranjeiro <nelio.laranjeiro@6wind.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
lib/librte_ether/rte_ethdev.c