cxgb4: copy vlan_id in ndo_get_vf_config

Copy vlan_id to get it displayed in vf info.

Signed-off-by: Arjun Vynipadath <arjun@chelsio.com>
Signed-off-by: Casey Leedom <leedom@chelsio.com>
Signed-off-by: Ganesh Goudhar <ganeshgr@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Arjun Vynipadath 2018-03-23 15:48:46 +05:30 committed by David S. Miller
parent 843bd7db79
commit bd79aceed5

View File

@ -2695,13 +2695,17 @@ static int cxgb4_mgmt_get_vf_config(struct net_device *dev,
{
struct port_info *pi = netdev_priv(dev);
struct adapter *adap = pi->adapter;
struct vf_info *vfinfo;
if (vf >= adap->num_vfs)
return -EINVAL;
vfinfo = &adap->vfinfo[vf];
ivi->vf = vf;
ivi->max_tx_rate = adap->vfinfo[vf].tx_rate;
ivi->max_tx_rate = vfinfo->tx_rate;
ivi->min_tx_rate = 0;
ether_addr_copy(ivi->mac, adap->vfinfo[vf].vf_mac_addr);
ether_addr_copy(ivi->mac, vfinfo->vf_mac_addr);
ivi->vlan = vfinfo->vlan;
return 0;
}