OSDN Git Service

i40e: set lan_veb index
authorShannon Nelson <shannon.nelson@intel.com>
Wed, 23 Apr 2014 04:49:54 +0000 (04:49 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 6 Jun 2014 08:59:32 +0000 (01:59 -0700)
When the VEB is created for the basic LAN device and its VSIs, we need to
set the tracking lan_veb index for later use.

Change-ID: I66bb74993bbda3621ca557437cb4b3517f9b315b
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_main.c

index 35e5ba4..a08f5a0 100644 (file)
@@ -7735,6 +7735,8 @@ struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
        ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
        if (ret)
                goto err_veb;
+       if (vsi_idx == pf->lan_vsi)
+               pf->lan_veb = veb->idx;
 
        return veb;