diff options
author | Thomas Falcon <tlfalcon@linux.ibm.com> | 2018-09-29 01:38:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-10-02 08:31:16 +0200 |
commit | ad95a240a140fa8bd4153f5d9c8fbd91aa048445 (patch) | |
tree | 88735f9e792710d3810dfd6bc450fcfcbcb21c06 /drivers/net/ethernet/ibm | |
parent | net: phy: Convert to using %pOFn instead of device_node.name (diff) | |
download | linux-ad95a240a140fa8bd4153f5d9c8fbd91aa048445.tar.xz linux-ad95a240a140fa8bd4153f5d9c8fbd91aa048445.zip |
ibmvnic: Increase maximum queue size limit
Increase queue size limit to 16. Devices available for IBM vNIC today
will not allow this amount, but this should give us some leeway for
future devices that may support more RX or TX queues.
Signed-off-by: Thomas Falcon <tlfalcon@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ibm')
-rw-r--r-- | drivers/net/ethernet/ibm/ibmvnic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ibm/ibmvnic.h b/drivers/net/ethernet/ibm/ibmvnic.h index f06eec145ca6..2c1787109f1c 100644 --- a/drivers/net/ethernet/ibm/ibmvnic.h +++ b/drivers/net/ethernet/ibm/ibmvnic.h @@ -39,7 +39,7 @@ #define IBMVNIC_RX_WEIGHT 16 /* when changing this, update IBMVNIC_IO_ENTITLEMENT_DEFAULT */ #define IBMVNIC_BUFFS_PER_POOL 100 -#define IBMVNIC_MAX_QUEUES 10 +#define IBMVNIC_MAX_QUEUES 16 #define IBMVNIC_TSO_BUF_SZ 65536 #define IBMVNIC_TSO_BUFS 64 |