1. 13 12月, 2015 3 次提交
  2. 03 12月, 2015 5 次提交
  3. 02 12月, 2015 8 次提交
  4. 24 11月, 2015 1 次提交
  5. 23 10月, 2015 4 次提交
  6. 20 10月, 2015 4 次提交
  7. 16 10月, 2015 4 次提交
  8. 15 10月, 2015 4 次提交
  9. 14 10月, 2015 2 次提交
  10. 09 10月, 2015 3 次提交
  11. 08 10月, 2015 2 次提交
    • M
      i40evf: propagate interrupt allocation failure · 313ed2d5
      Mitch Williams 提交于
      Lower level functions are properly reporting errors, and higher-level
      functions are correctly responding to errors, but the errors aren't
      actually getting through. Typically, the middle-manager function seems
      to want to shield its boss from any bad news.
      
      This change fixes a panic if the driver is unable to enable MSI-X or is
      unable to acquire enough vectors.
      
      Change-ID: Ifd5787ce92519a5d97e4b465902db930d97b71a1
      Signed-off-by: NMitch Williams <mitch.a.williams@intel.com>
      Tested-by: NAndrew Bowers <andrewx.bowers@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      313ed2d5
    • S
      i40e/i40evf: fix unicast mac address add · 2f41f335
      Shannon Nelson 提交于
      When using something like "ip maddr add ..." to add another unicast mac
      address to the netdev, the mac address comes into the set_rx_mode handler
      in the multicast list whether it is a unicast or multicast address.
      This was confusing the code when it was trying to search for addresses
      that needed to be deleted from the VSI, because it was looking for the
      VSI unicast address in the netdev unicast list.  The result was that a
      new unicast address would get added to the VSI list and then immediately
      removed, and would never actually make it down into the hardware.
      
      This patch removes the separation from unicast and multicast in the search
      for filters to be deleted.  It also simplifies the logic a little with a
      jump to the bottom of the loop when an address is found.  Now it doesn't
      matter which netdev list the address is hiding in, we'll check them all.
      
      Change-ID: Ie3685a92427ae7d2212bf948919ce295bc7a874c
      Signed-off-by: NShannon Nelson <shannon.nelson@intel.com>
      Tested-by: NAndrew Bowers <andrewx.bowers@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      2f41f335