freebsd-dev/sys/net80211
Sam Leffler 0a915fad5d MFp4 changes to fix locking issues and correct reference
count handling of station entries in hostap mode:

Input path:

o driver is now expected to find the node associated with the
  sender of a received frame; use ic_bss if none is located
o driver passes the (referenced) node into ieee80211_input for
  use within the wlan module and is responsible for cleaning up
  on return
o the antenna state is no longer passed up with each frame; this
  is now considered driver-private state and drivers are responsible
  for keeping it in the driver-private part of a node

Output path:

Revamp output path for management frames to eliminate redundant
locking that causes problems and to correct reference counting
bogosity that occurs when stations are timed out due to inactivity
(in AP mode).  On output the refcnt'd node is stashed in the pkthdr's
recvif field (yech) and retrieved by the driver.  This eliminates
an unref/ref scenario and related node table unlock/lock due to the
driver looking up the node.  This is particularly important when
stations are timed out as this causes a lock order reversal that
can result in a deadlock.  As a byproduct we also reduce the overhead
for sending management frames (minimal).  Additional fallout from
this is a change to ieee80211_encap to return a refcn't node for
tieing to the outbound frame.  Node refcnts are not reclaimed until
after a frame is completely processed (e.g. in the tx interrupt
handler).  This is especially important for timed out stations as
this deref will be the final one causing the node entry to be
reclaimed.

Additional semi-related changes:
o replace m_copym use with m_copypacket (optimization)
o add assert to verify ic_bss is never free'd during normal operation
o add comments explaining calling conventions by drivers for frames
  going in each direction
o remove extraneous code that "cannot be executed" (e.g. because
  pointers may never be null)
2003-08-19 22:17:04 +00:00
..
ieee80211_crypto.c revise copyright notices per discussion with Atsushi Onoe <onoe@sm.sony.co.jp> 2003-06-27 05:13:52 +00:00
ieee80211_crypto.h revise copyright notices per discussion with Atsushi Onoe <onoe@sm.sony.co.jp> 2003-06-27 05:13:52 +00:00
ieee80211_input.c MFp4 changes to fix locking issues and correct reference 2003-08-19 22:17:04 +00:00
ieee80211_ioctl.c o change ieee80211_new_state handling to use a proper method that drivers 2003-07-20 21:36:08 +00:00
ieee80211_ioctl.h revise copyright notices per discussion with Atsushi Onoe <onoe@sm.sony.co.jp> 2003-06-27 05:13:52 +00:00
ieee80211_node.c MFp4 changes to fix locking issues and correct reference 2003-08-19 22:17:04 +00:00
ieee80211_node.h MFp4 changes to fix locking issues and correct reference 2003-08-19 22:17:04 +00:00
ieee80211_output.c MFp4 changes to fix locking issues and correct reference 2003-08-19 22:17:04 +00:00
ieee80211_proto.c o change ieee80211_new_state handling to use a proper method that drivers 2003-07-20 21:36:08 +00:00
ieee80211_proto.h MFp4 changes to fix locking issues and correct reference 2003-08-19 22:17:04 +00:00
ieee80211_var.h MFp4 changes to fix locking issues and correct reference 2003-08-19 22:17:04 +00:00
ieee80211.c Delay creating ic_bss until after the super-class has a chance 2003-08-13 22:09:44 +00:00
ieee80211.h revise copyright notices per discussion with Atsushi Onoe <onoe@sm.sony.co.jp> 2003-06-27 05:13:52 +00:00