diff options
author | Michal Kosiarz <michal.kosiarz@intel.com> | 2017-12-27 08:14:40 -0500 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2018-01-26 13:22:56 -0800 |
commit | f34e308b671cbd9293da3bad82efe177822fe93f (patch) | |
tree | ffd751207536c98933ae2c7874081506a1c01f87 /drivers/net/ethernet/intel/i40e/i40e_status.h | |
parent | 9515a2e082f91457db0ecff4b65371d0fb5d9aad (diff) | |
download | lwn-f34e308b671cbd9293da3bad82efe177822fe93f.tar.gz lwn-f34e308b671cbd9293da3bad82efe177822fe93f.zip |
i40e: Add returning AQ critical error to SW
The FW has the ability to return a critical error on every AQ command.
When this critical error occurs then we need to send the correct response
to the caller.
Signed-off-by: Michal Kosiarz <michal.kosiarz@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/i40e/i40e_status.h')
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_status.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_status.h b/drivers/net/ethernet/intel/i40e/i40e_status.h index 5f9cac55aa55..afb72e711d43 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_status.h +++ b/drivers/net/ethernet/intel/i40e/i40e_status.h @@ -95,6 +95,7 @@ enum i40e_status_code { I40E_ERR_NOT_READY = -63, I40E_NOT_SUPPORTED = -64, I40E_ERR_FIRMWARE_API_VERSION = -65, + I40E_ERR_ADMIN_QUEUE_CRITICAL_ERROR = -66, }; #endif /* _I40E_STATUS_H_ */ |