mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 20:56:46 +07:00
ixgbe: Allow setting multiple queues when SR-IOV is enabled
The maximum queue count reported was 1, however support for multiple queues with SR-IOV was added some time ago so we should report support for it to the user so that they can select multiple queues if they so desire. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
7564a8880a
commit
3b00da03ae
@ -3060,8 +3060,8 @@ static unsigned int ixgbe_max_channels(struct ixgbe_adapter *adapter)
|
||||
/* We only support one q_vector without MSI-X */
|
||||
max_combined = 1;
|
||||
} else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
|
||||
/* SR-IOV currently only allows one queue on the PF */
|
||||
max_combined = 1;
|
||||
/* Limit value based on the queue mask */
|
||||
max_combined = adapter->ring_feature[RING_F_RSS].mask + 1;
|
||||
} else if (tcs > 1) {
|
||||
/* For DCB report channels per traffic class */
|
||||
if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
|
||||
|
Loading…
Reference in New Issue
Block a user