qed: Add missing static/local dcbx info
Some getters are not getting filled with the correct information
regarding local DCBx.
Fixes: 49632b5822
("qed: Add support for static dcbx.")
Signed-off-by: Sudarsana Reddy Kalluru <Sudarsana.Kalluru@cavium.com>
Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b11dabfd33
commit
05930d18c8
@ -1460,7 +1460,7 @@ static u8 qed_dcbnl_getcap(struct qed_dev *cdev, int capid, u8 *cap)
|
||||
break;
|
||||
case DCB_CAP_ATTR_DCBX:
|
||||
*cap = (DCB_CAP_DCBX_LLD_MANAGED | DCB_CAP_DCBX_VER_CEE |
|
||||
DCB_CAP_DCBX_VER_IEEE);
|
||||
DCB_CAP_DCBX_VER_IEEE | DCB_CAP_DCBX_STATIC);
|
||||
break;
|
||||
default:
|
||||
*cap = false;
|
||||
@ -1534,6 +1534,8 @@ static u8 qed_dcbnl_getdcbx(struct qed_dev *cdev)
|
||||
mode |= DCB_CAP_DCBX_VER_IEEE;
|
||||
if (dcbx_info->operational.cee)
|
||||
mode |= DCB_CAP_DCBX_VER_CEE;
|
||||
if (dcbx_info->operational.local)
|
||||
mode |= DCB_CAP_DCBX_STATIC;
|
||||
|
||||
DP_VERBOSE(hwfn, QED_MSG_DCB, "dcb mode = %d\n", mode);
|
||||
kfree(dcbx_info);
|
||||
|
Loading…
Reference in New Issue
Block a user