OSDN Git Service

cxgb4: copy vlan_id in ndo_get_vf_config
authorArjun Vynipadath <arjun@chelsio.com>
Fri, 23 Mar 2018 10:18:46 +0000 (15:48 +0530)
committerDavid S. Miller <davem@davemloft.net>
Mon, 26 Mar 2018 01:07:56 +0000 (21:07 -0400)
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>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c

index 30dfb9f..57d38f8 100644 (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;
 }