mirror of https://gitee.com/openkylin/linux.git
ibmvnic: set up 200GBPS speed
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>
This commit is contained in:
parent
7028977965
commit
b9cd795b0e
|
@ -4637,7 +4637,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:
|
||||
|
@ -4652,6 +4652,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
|
||||
|
|
Loading…
Reference in New Issue