mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
ibmvnic: set up 200GBPS speed
[ Upstream commitb9cd795b0e] Set up the speed according to crq->query_phys_parms.rsp.speed. Fix IBMVNIC_10GBPS typo. Fixes:f8d6ae0d27("ibmvnic: Report actual backing device speed and duplex values") Signed-off-by: Lijun Pan <ljp@linux.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
da012618c5
commit
1d3188378d
@@ -4477,7 +4477,7 @@ static int handle_query_phys_parms_rsp(union ibmvnic_crq *crq,
|
||||
case IBMVNIC_1GBPS:
|
||||
adapter->speed = SPEED_1000;
|
||||
break;
|
||||
case IBMVNIC_10GBP:
|
||||
case IBMVNIC_10GBPS:
|
||||
adapter->speed = SPEED_10000;
|
||||
break;
|
||||
case IBMVNIC_25GBPS:
|
||||
@@ -4492,6 +4492,9 @@ static int handle_query_phys_parms_rsp(union ibmvnic_crq *crq,
|
||||
case IBMVNIC_100GBPS:
|
||||
adapter->speed = SPEED_100000;
|
||||
break;
|
||||
case IBMVNIC_200GBPS:
|
||||
adapter->speed = SPEED_200000;
|
||||
break;
|
||||
default:
|
||||
if (netif_carrier_ok(netdev))
|
||||
netdev_warn(netdev, "Unknown speed 0x%08x\n", rspeed);
|
||||
|
||||
@@ -373,7 +373,7 @@ struct ibmvnic_phys_parms {
|
||||
#define IBMVNIC_10MBPS 0x40000000
|
||||
#define IBMVNIC_100MBPS 0x20000000
|
||||
#define IBMVNIC_1GBPS 0x10000000
|
||||
#define IBMVNIC_10GBP 0x08000000
|
||||
#define IBMVNIC_10GBPS 0x08000000
|
||||
#define IBMVNIC_40GBPS 0x04000000
|
||||
#define IBMVNIC_100GBPS 0x02000000
|
||||
#define IBMVNIC_25GBPS 0x01000000
|
||||
|
||||
Reference in New Issue
Block a user