1. 08 2月, 2013 5 次提交
  2. 07 2月, 2013 6 次提交
  3. 05 2月, 2013 8 次提交
  4. 04 2月, 2013 4 次提交
  5. 03 2月, 2013 2 次提交
  6. 02 2月, 2013 2 次提交
    • D
      Merge branch 'wireless' · 9165bf27
      David S. Miller 提交于
      John W. Linville says:
      
      ====================
      This is a small batch of fixes intended for the 3.8 stream...
      
      There are two pulls from Johannes.  Regarding mac80211, Johannes says:
      
      "One fix from Dan for a possible memory overrun."
      
      Regarding iwlwifi,  Johannes says:
      
      "I have one fix from Emmanuel reverting a previous fix that caused
      more trouble than it's worth."
      
      Along with those:
      
      Arend van Spriel fixes a fatal error in brcsmac related to tx status processing.
      
      Bing Zhao corrects a problem where mwifiex would fail to complete a scan
      in the event of an IE processing error.
      
      Larry Finger fixes a thinko in rtlwifi in which the wrong skb variable
      was being used in some cases.
      
      Rafał Miłecki fixes a thinko in an ID check in the bcma flash code.
      ====================
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      9165bf27
    • J
      Merge branch 'master' of... · ed6882ac
      John W. Linville 提交于
      Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless into for-davem
      ed6882ac
  7. 01 2月, 2013 7 次提交
  8. 31 1月, 2013 4 次提交
  9. 30 1月, 2013 2 次提交
    • N
      vmxnet3: set carrier state properly on probe · 6cdd20c3
      Neil Horman 提交于
      vmxnet3 fails to set netif_carrier_off on probe, meaning that when an interface
      is opened the __LINK_STATE_NOCARRIER bit is already cleared, and so
      /sys/class/net/<ifname>/operstate remains in the unknown state.  Correct this by
      setting netif_carrier_off on probe, like other drivers do.
      
      Also, while we're at it, lets remove the netif_carrier_ok checks from the
      link_state_update function, as that check is atomically contained within the
      netif_carrier_[on|off] functions anyway
      
      Tested successfully by myself
      Signed-off-by: NNeil Horman <nhorman@tuxdriver.com>
      CC: "David S. Miller" <davem@davemloft.net>
      CC: "VMware, Inc." <pv-drivers@vmware.com>
      CC: Ben Hutchings <bhutchings@solarflare.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      6cdd20c3
    • B
      e1000e: enable ECC on I217/I218 to catch packet buffer memory errors · 28600304
      Bruce Allan 提交于
      In rare instances, memory errors have been detected in the internal packet
      buffer memory on I217/I218 when stressed under certain environmental
      conditions.  Enable Error Correcting Code (ECC) in hardware to catch both
      correctable and uncorrectable errors.  Correctable errors will be handled
      by the hardware.  Uncorrectable errors in the packet buffer will cause the
      packet to be received with an error indication in the buffer descriptor
      causing the packet to be discarded.  If the uncorrectable error is in the
      descriptor itself, the hardware will stop and interrupt the driver
      indicating the error.  The driver will then reset the hardware in order to
      clear the error and restart.
      
      Both types of errors will be accounted for in statistics counters.
      Signed-off-by: NBruce Allan <bruce.w.allan@intel.com>
      Cc: <stable@vger.kernel.org> # 3.5.x & 3.6.x
      Tested-by: NJeff Pieper <jeffrey.e.pieper@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      28600304