1. 16 12月, 2011 9 次提交
  2. 15 12月, 2011 9 次提交
  3. 14 12月, 2011 8 次提交
  4. 13 12月, 2011 1 次提交
  5. 08 12月, 2011 2 次提交
    • J
      wireless: disable wext sysfs by default · 0052d812
      Johannes Berg 提交于
      This code has been on the list to remove for a long
      time, so disable it by default, add a warning to its
      Kconfig, and schedule it for removal in 3.5.
      
      The only known dependency, hal, has not required it
      since its 0.5.12 release, which was in early 2009
      and hal has since been deprecated completely.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      0052d812
    • J
      mac80211: fix another race in aggregation start · 15062e6a
      Johannes Berg 提交于
      Emmanuel noticed that when mac80211 stops the queues
      for aggregation that can leave a packet pending. This
      packet will be given to the driver after the AMPDU
      callback, but as a non-aggregated packet which messes
      up the sequence number etc.
      
      I also noticed by looking at the code that if packets
      are being processed while we clear the WANT_START bit,
      they might see it cleared already and queue up on
      tid_tx->pending. If the driver then rejects the new
      aggregation session we leak the packet.
      
      Fix both of these issues by changing this code to not
      stop the queues at all. Instead, let packets queue up
      on the tid_tx->pending queue instead of letting them
      get to the driver, and add code to recover properly
      in case the driver rejects the session.
      
      (The patch looks large because it has to move two
      functions to before their new use.)
      
      Cc: stable@vger.kernel.org
      Reported-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      15062e6a
  6. 07 12月, 2011 6 次提交
  7. 03 12月, 2011 3 次提交
  8. 02 12月, 2011 2 次提交