1. 05 12月, 2008 1 次提交
    • S
      mac80211: use unaligned safe memcmp() in-place of compare_ether_addr() · 5cf12e8d
      Shaddy Baddah 提交于
      After fixing zd1211rw: use unaligned safe memcmp() in-place of
      compare_ether_addr(), I started to see kernel log messages detailing
      unaligned access:
      
        Kernel unaligned access at TPC[100f7f44] sta_info_get+0x24/0x68 [mac80211]
      
      As with the aforementioned patch, the unaligned access was eminating
      from a compare_ether_addr() call. Concerned that whilst it was safe to
      assume that unalignment was the norm for the zd1211rw, and take
      preventative measures, it may not be the case or acceptable to use the
      easy fix of changing the call to memcmp().
      
      My research however indicated that it was OK to do this, as there are
      a few instances where memcmp() is the preferred mechanism for doing
      mac address comparisons throughout the module.
      Signed-off-by: NShaddy Baddah <shaddy_baddah@hotmail.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      5cf12e8d
  2. 15 10月, 2008 1 次提交
  3. 25 9月, 2008 1 次提交
    • J
      mac80211: clean up rate control API · 4b7679a5
      Johannes Berg 提交于
      Long awaited, hard work. This patch totally cleans up the rate control
      API to remove the requirement to include internal headers outside of
      net/mac80211/.
      
      There's one internal use in the PID algorithm left for mesh networking,
      we'll have to figure out a way to clean that one up and decide how to
      do the peer link evaluation, possibly independent of the rate control
      algorithm or via new API.
      
      Additionally, ath9k is left using the cross-inclusion hack for now, we
      will add new API where necessary to make this work properly, but right
      now I'm not expert enough to do it. It's still off better than before.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      4b7679a5
  4. 16 9月, 2008 3 次提交
  5. 15 7月, 2008 1 次提交
    • J
      mac80211: make master netdev handling sane · 3e122be0
      Johannes Berg 提交于
      Currently, almost every interface type has a 'bss' pointer
      pointing to BSS information. This BSS information, however,
      is for a _local_ BSS, not for the BSS we joined, so having
      it on a STA mode interface makes little sense, but now they
      have it pointing to the master device, which is an AP mode
      virtual interface. However, except for some bitrate control
      data, this pointer is only used in AP/VLAN modes (for power
      saving stations.)
      
      Overall, it is not necessary to even have the master netdev
      be a valid virtual interface, and it doesn't have to be on
      the list of interfaces either.
      
      This patch changes the master netdev to be special, it now
       - no longer is on the list of virtual interfaces, which
         lets me remove a lot of tests for that
       - no longer has sub_if_data attached, since that isn't used
      
      Additionally, this patch changes some vlan/ap mode handling
      that is related to these 'bss' pointers described above (but
      in the VLAN case they actually make sense because there they
      point to the AP they belong to); it also adds some debugging
      code to IEEE80211_DEV_TO_SUB_IF to validate it is not called
      on the master netdev any more.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      3e122be0
  6. 09 7月, 2008 1 次提交
  7. 03 7月, 2008 1 次提交
  8. 27 6月, 2008 1 次提交
  9. 22 5月, 2008 2 次提交
  10. 15 5月, 2008 1 次提交
    • J
      mac80211: proper STA info locking · 07346f81
      Johannes Berg 提交于
      As discussed earlier, we can unify locking in struct sta_info
      and use just a single spinlock protecting all members of the
      structure that need protection. Many don't, but one of the
      especially bad ones is the 'flags' member that can currently
      be clobbered when RX and TX is being processed on different
      CPUs at the same time.
      
      Because having four spinlocks for different, mostly exclusive
      parts of a single structure is overkill, this patch also kills
      the ampdu and mesh plink spinlocks and uses just a single one
      for everything. Because none of the spinlocks are nested, this
      is safe.
      
      It remains to be seen whether or not we should make the sta
      flags use atomic bit operations instead, for now though this
      is a safe thing and using atomic operations instead will be
      very simple using the new static inline functions this patch
      introduces for accessing sta->flags.
      
      Since spin_lock_bh() is used with this lock, there shouldn't
      be any contention even if aggregation is enabled at around the
      same time as both requires frame transmission/reception which
      is in a bh context.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Cc: Tomas Winkler <tomasw@gmail.com>
      Cc: Ron Rindjunsky <ron.rindjunsky@intel.com>
      Cc: Luis Carlos Cobo <luisca@cozybit.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      07346f81
  11. 08 5月, 2008 1 次提交
    • J
      mac80211: QoS related cleanups · e100bb64
      Johannes Berg 提交于
      This
       * makes the queue number passed to drivers a u16
         (as it will be with skb_get_queue_mapping)
       * removes the useless queue number defines
       * splits hw->queues into hw->queues/ampdu_queues
       * removes the debugfs files for per-queue counters
       * removes some dead QoS code
       * removes the beacon queue configuration for IBSS
         so that the drivers now never get a queue number
         bigger than (hw->queues + hw->ampdu_queues - 1)
         for tx and only in the range 0..hw->queues-1 for
         conf_tx.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      e100bb64
  12. 09 4月, 2008 5 次提交
    • J
      mac80211: rename files · 2c8dccc7
      Johannes Berg 提交于
      This patch renames all mac80211 files (except ieee80211_i.h) to get rid
      of the useless ieee80211_ prefix.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      2c8dccc7
    • J
      mac80211: fix key vs. sta locking problems · 3b96766f
      Johannes Berg 提交于
      Up to now, key manipulation is supposed to run under RTNL to
      avoid concurrent manipulations and also allow the set_key()
      hardware callback to sleep. This is not feasible because STA
      structs are rcu-protected and thus a lot of operations there
      cannot take the RTNL. Also, key references are rcu-protected
      so we cannot do things atomically.
      
      This patch changes key locking completely:
       * key operations are now atomic
       * hardware crypto offload is enabled and disabled from
         a workqueue, due to that key freeing is also delayed
       * debugfs code is also run from a workqueue
       * keys reference STAs (and vice versa!) so during STA
         unlink the STAs key reference is removed but not the
         keys STA reference, to avoid races key todo work is
         run before STA destruction.
       * fewer STA operations now need the RTNL which was
         required due to key operations
      
      This fixes the locking problems lockdep pointed out and also
      makes things more light-weight because the rtnl isn't required
      as much.
      
      Note that the key todo lock/key mutex are global locks, this
      is not required, of course, they could be per-hardware instead.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      3b96766f
    • J
      mac80211: fix sta-info pinning · 7d1559f1
      Johannes Berg 提交于
      When a STA is supposed to be unlinked but is pinned, it still needs
      to be unlinked from all structures. Only at the end of the unlink
      process should we check for pin status and invalidate the callers
      reference if it is pinned. Move the pin status check down.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      7d1559f1
    • J
      mac80211: fix defined but not used · 4d6141c3
      Jiri Slaby 提交于
      These two symbols are used only in ifdeffed function. Move them to that
      section too.
      net/mac80211/sta_info.c:387: warning: `__sta_info_pin' defined but not used
      net/mac80211/sta_info.c:397: warning: `__sta_info_unpin' defined but not used
      Signed-off-by: NJiri Slaby <jirislaby@gmail.com>
      Cc: Michael Wu <flamingice@sourmilk.net>
      Cc: Johannes Berg <johannes@sipsolutions.net>
      Cc: Jiri Benc <jbenc@suse.cz>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      4d6141c3
    • J
      mac80211: fix possible sta-debugfs work lockup · 49ec6fa2
      Johannes Berg 提交于
      Because we queue the sta-debugfs-adding work on our mac80211
      workqueue (which needs to be flushed under RTNL) and that work
      needs the RTNL, it can currently deadlock, thanks to Reinette
      Chatre for pointing out the lockdep warning about this.
      
      This patch fixes it by moving this work to the common kernel
      workqueue (using schedule_work) and canceling it as appropriate.
      
      It also fixes a related problem: When a STA is pinned by the
      debugfs adding work and sta_info_flush() runs concurrently
      it is not guaranteed that all STAs are removed from the driver
      before the corresponding interface is removed which may lead
      to bugs.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Cc: Reinette Chatre <reinette.chatre@intel.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      49ec6fa2
  13. 02 4月, 2008 5 次提交
  14. 28 3月, 2008 1 次提交
  15. 07 3月, 2008 9 次提交
  16. 01 3月, 2008 6 次提交