]> git.baikalelectronics.ru Git - kernel.git/commit
fm10k: fix SM mailbox full condition
authorNgai-Mint Kwan <ngai-mint.kwan@intel.com>
Mon, 15 Oct 2018 19:18:27 +0000 (12:18 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 31 Oct 2018 17:31:24 +0000 (10:31 -0700)
commit3fad80dce659b837311c3905fd1868f3907b094c
tree56fe6e2909ddf6d2644b24a0eda30c51d437353f
parentedccbfc7c16aca72c2b7936d5b7813c65d8d2d82
fm10k: fix SM mailbox full condition

Current condition will always incorrectly report a full SM mailbox if an
IES API application is not running. Due to this, the
"fm10k_service_task" will be infinitely queued into the driver's
workqueue. This, in turn, will cause a "kworker" thread to report 100%
CPU utilization and might cause "soft lockup" events or system crashes.

To fix this issue, a new condition is added to determine if the SM
mailbox is in the correct state of FM10K_STATE_OPEN before proceeding.
In other words, an instance of the IES API must be running. If there is,
the remainder of the flow stays the same which is to determine if the SM
mailbox capacity has been exceeded or not and take appropriate action.

Signed-off-by: Ngai-Mint Kwan <ngai-mint.kwan@intel.com>
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/fm10k/fm10k_iov.c