iavf: Fix updating statistics
authorTony Nguyen <anthony.l.nguyen@intel.com>
Wed, 24 Jun 2020 16:04:22 +0000 (09:04 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Aug 2020 06:23:50 +0000 (08:23 +0200)
commit9a0e58cf2a8ce61b22d6b58b8b6ca52f274cc0e8
tree7f9fb3294068e5c740cbce32f85ebeb1587e5eb0
parent5a38679d2020090973bef30243266a2e17b18b59
iavf: Fix updating statistics

[ Upstream commit 9358076642f14cec8c414850d5a909cafca3a9d6 ]

Commit bac8486116b0 ("iavf: Refactor the watchdog state machine") inverted
the logic for when to update statistics. Statistics should be updated when
no other commands are pending, instead they were only requested when a
command was processed. iavf_request_stats() would see a pending request
and not request statistics to be updated. This caused statistics to never
be updated; fix the logic.

Fixes: bac8486116b0 ("iavf: Refactor the watchdog state machine")
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/intel/iavf/iavf_main.c