mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-14 00:24:15 +08:00
i40e: I40E_FLAG_MQ_ENABLED is not used
Remove references to I40E_FLAG_MQ_ENABLED from the code as it doesn't seem to be used anywhere. Change-Id: I4c89fb65b2cdd26fbb0c58fccbbb4b03f0e5f1b3 Signed-off-by: Neerav Parikh <Neerav.Parikh@intel.com> Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com> Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
d739764406
commit
9f52987b05
@ -230,20 +230,19 @@ struct i40e_pf {
|
||||
#define I40E_FLAG_RX_1BUF_ENABLED (u64)(1 << 4)
|
||||
#define I40E_FLAG_RX_PS_ENABLED (u64)(1 << 5)
|
||||
#define I40E_FLAG_RSS_ENABLED (u64)(1 << 6)
|
||||
#define I40E_FLAG_MQ_ENABLED (u64)(1 << 7)
|
||||
#define I40E_FLAG_VMDQ_ENABLED (u64)(1 << 8)
|
||||
#define I40E_FLAG_FDIR_REQUIRES_REINIT (u64)(1 << 9)
|
||||
#define I40E_FLAG_NEED_LINK_UPDATE (u64)(1 << 10)
|
||||
#define I40E_FLAG_IN_NETPOLL (u64)(1 << 13)
|
||||
#define I40E_FLAG_16BYTE_RX_DESC_ENABLED (u64)(1 << 14)
|
||||
#define I40E_FLAG_CLEAN_ADMINQ (u64)(1 << 15)
|
||||
#define I40E_FLAG_FILTER_SYNC (u64)(1 << 16)
|
||||
#define I40E_FLAG_PROCESS_MDD_EVENT (u64)(1 << 18)
|
||||
#define I40E_FLAG_PROCESS_VFLR_EVENT (u64)(1 << 19)
|
||||
#define I40E_FLAG_SRIOV_ENABLED (u64)(1 << 20)
|
||||
#define I40E_FLAG_DCB_ENABLED (u64)(1 << 21)
|
||||
#define I40E_FLAG_FDIR_ENABLED (u64)(1 << 22)
|
||||
#define I40E_FLAG_FDIR_ATR_ENABLED (u64)(1 << 23)
|
||||
#define I40E_FLAG_VMDQ_ENABLED (u64)(1 << 7)
|
||||
#define I40E_FLAG_FDIR_REQUIRES_REINIT (u64)(1 << 8)
|
||||
#define I40E_FLAG_NEED_LINK_UPDATE (u64)(1 << 9)
|
||||
#define I40E_FLAG_IN_NETPOLL (u64)(1 << 12)
|
||||
#define I40E_FLAG_16BYTE_RX_DESC_ENABLED (u64)(1 << 13)
|
||||
#define I40E_FLAG_CLEAN_ADMINQ (u64)(1 << 14)
|
||||
#define I40E_FLAG_FILTER_SYNC (u64)(1 << 15)
|
||||
#define I40E_FLAG_PROCESS_MDD_EVENT (u64)(1 << 17)
|
||||
#define I40E_FLAG_PROCESS_VFLR_EVENT (u64)(1 << 18)
|
||||
#define I40E_FLAG_SRIOV_ENABLED (u64)(1 << 19)
|
||||
#define I40E_FLAG_DCB_ENABLED (u64)(1 << 20)
|
||||
#define I40E_FLAG_FDIR_ENABLED (u64)(1 << 21)
|
||||
#define I40E_FLAG_FDIR_ATR_ENABLED (u64)(1 << 22)
|
||||
#define I40E_FLAG_MFP_ENABLED (u64)(1 << 26)
|
||||
#ifdef CONFIG_I40E_VXLAN
|
||||
#define I40E_FLAG_VXLAN_FILTER_SYNC (u64)(1 << 27)
|
||||
|
@ -5643,7 +5643,6 @@ static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
|
||||
if (err) {
|
||||
pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
|
||||
I40E_FLAG_RSS_ENABLED |
|
||||
I40E_FLAG_MQ_ENABLED |
|
||||
I40E_FLAG_DCB_ENABLED |
|
||||
I40E_FLAG_SRIOV_ENABLED |
|
||||
I40E_FLAG_FDIR_ENABLED |
|
||||
@ -5826,7 +5825,6 @@ static int i40e_sw_init(struct i40e_pf *pf)
|
||||
I40E_FLAG_MSI_ENABLED |
|
||||
I40E_FLAG_MSIX_ENABLED |
|
||||
I40E_FLAG_RX_PS_ENABLED |
|
||||
I40E_FLAG_MQ_ENABLED |
|
||||
I40E_FLAG_RX_1BUF_ENABLED;
|
||||
|
||||
/* Depending on PF configurations, it is possible that the RSS
|
||||
@ -7349,8 +7347,7 @@ static void i40e_determine_queue_usage(struct i40e_pf *pf)
|
||||
*/
|
||||
queues_left = pf->hw.func_caps.num_tx_qp;
|
||||
|
||||
if (!((pf->flags & I40E_FLAG_MSIX_ENABLED) &&
|
||||
(pf->flags & I40E_FLAG_MQ_ENABLED)) ||
|
||||
if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) ||
|
||||
!(pf->flags & (I40E_FLAG_RSS_ENABLED |
|
||||
I40E_FLAG_FDIR_ENABLED | I40E_FLAG_DCB_ENABLED)) ||
|
||||
(queues_left == 1)) {
|
||||
@ -7361,7 +7358,6 @@ static void i40e_determine_queue_usage(struct i40e_pf *pf)
|
||||
|
||||
/* make sure all the fancies are disabled */
|
||||
pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
|
||||
I40E_FLAG_MQ_ENABLED |
|
||||
I40E_FLAG_FDIR_ENABLED |
|
||||
I40E_FLAG_FDIR_ATR_ENABLED |
|
||||
I40E_FLAG_DCB_ENABLED |
|
||||
|
Loading…
Reference in New Issue
Block a user