1
2			    README.DRAGONFLY
3
4    If a major re-port of the 802_11 infrastructure is required, the
5    easiest way to do it is to copy the FreeBSD files into the appropriate
6    places in the DragonFly archive and then do a 'git diff .' in 802_11
7    and restore the pieces that required DragonFly adjustments.
8
9    * Change all #include <net80211/...> to <netproto/802_11/...>
10
11    * Change all M_NOWAIT to either M_INTWAIT for mallocs or MB_DONTWAIT
12      for mbuf function calls.
13
14    * malloc -> kmalloc
15
16    * free -> kfree
17
18    * *printf -> k*printf (printf, vprintf, vsnprintf, etc)
19
20    * if_inc_counter(ifp, BLAH, 1) -> IFNET_STAT_INC(ifp, blah, 1)
21	(lower case blah)
22
23    * Trailing white-space pass
24
25