1. 25 Jul, 2014 5 commits
    • Himangi Saraogi's avatar
      net_sched: remove exceptional & on function name · e40f5c72
      Himangi Saraogi authored
      In this file, function names are otherwise used as pointers without &.
      
      A simplified version of the Coccinelle semantic patch that makes this
      change is as follows:
      
      // <smpl>
      @r@
      identifier f;
      @@
      
      f(...) { ... }
      
      @@
      identifier r.f;
      @@
      
      - &f
      + f
      // </smpl>
      Signed-off-by: default avatarHimangi Saraogi <himangi774@gmail.com>
      Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e40f5c72
    • Himangi Saraogi's avatar
      neigh: remove exceptional & on function name · 56ec0fb1
      Himangi Saraogi authored
      In this file, function names are otherwise used as pointers without &.
      
      A simplified version of the Coccinelle semantic patch that makes this
      change is as follows:
      
      // <smpl>
      @r@
      identifier f;
      @@
      
      f(...) { ... }
      
      @@
      identifier r.f;
      @@
      
      - &f
      + f
      // </smpl>
      Signed-off-by: default avatarHimangi Saraogi <himangi774@gmail.com>
      Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      56ec0fb1
    • Himangi Saraogi's avatar
      igmp: remove exceptional & on function name · 179542a5
      Himangi Saraogi authored
      In this file, function names are otherwise used as pointers without &.
      
      A simplified version of the Coccinelle semantic patch that makes this
      change is as follows:
      
      // <smpl>
      @r@
      identifier f;
      @@
      
      f(...) { ... }
      
      @@
      identifier r.f;
      @@
      
      - &f
      + f
      // </smpl>
      Signed-off-by: default avatarHimangi Saraogi <himangi774@gmail.com>
      Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      179542a5
    • David S. Miller's avatar
      Merge branch 'net_next_ovs' of git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch · 92390790
      David S. Miller authored
      Pravin B Shelar says:
      
      ====================
      Open vSwitch
      
      Following patches adds three features to OVS
      1. Add fairness to upcall processing.
      2. Hash action.
      3. Enable Tunnel GSO features.
      Rest of patches are bug fixes related to patches from same series.
      
      v2 series changes first patch according to comment from Dave Miller.
      v3 series changes first patch according to comment from Nikolay Aleksandrov.
      v4 series update recirc patch commit msg.
      v5 series resolve conflict with net-next, updated recic action patch.
      v6 series sends all patches.
      v7 series drop recirc patches.
      v8 series checkpatch fix
      v9 series drop HASH action patch. update sample action commit msg.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      92390790
    • David S. Miller's avatar
      Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next · 10f29808
      David S. Miller authored
      Jeff Kirsher says:
      
      ====================
      Intel Wired LAN Driver Updates 2014-07-24
      
      This series contains updates to igb, ixgbe, i40e and i40evf.
      
      Mark fixes a possible attempt to dereference a NULL pointer in ixgbe_probe().
      Also changes some uses of strncpy to strlcpy when clearing is not needed to
      prevent information leakage.
      
      Jacob fixes a bug in the misuse of the list_for_each macro to loop over
      every entry in the bus_list.  Instead of attempting to loop over the list
      from a random entry point, go up to the bus and use the real list_head
      entry point.  This prevents the possible read or write of unallocated or
      incorrectly addressed memory.  Then provides a patch to prevent the
      display of the minimum link qualification check if we might be in a
      virtual machine.  This check is incorrect and misleading in this case,
      since we actually do not really know what the available bandwidth is.
      To do so, we simply check whether each function on the bus matches our
      device id.
      
      Carolyn adds a check and prints the error cause register value when the
      hardware detects a malformed packet to assist the user.
      
      Toralf Förster fixes a format mismatch in i40e which was found using
      cppcheck.
      
      Shannon adds nvmupdate support by implementing a state machine intended
      to support the userland tool for updating the device eeprom.
      
      Jesse fixes the extension header checksum logic for IPv6 in i40e and
      i40evf.
      
      Mitch reduces a delay in the i40evf driver where we do not need to
      delay an entire millisecond to get into our critical section.
      
      Kamil fixes an issue where access to the NVM was being blocked until
      a driver reset where a check for NVM related admin queue commands
      would not recognize that such a command was received and would not clear
      nvm_busy flag.
      
      Catherine fixes a couple of firmware API version errors.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      10f29808
  2. 24 Jul, 2014 22 commits
  3. 23 Jul, 2014 13 commits