mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
LinuxKPI: 802.11: zero-pad debug flags
Write the debug flags as full 32bit hex numbers to have a better view on them. No functional changes. Sponsored by: The FreeBSD Foundation MFC after: 3 days Reviewed by: cc, emaste Differential Revision: https://reviews.freebsd.org/D42426
This commit is contained in:
parent
78ca45df31
commit
8895b47638
1 changed files with 12 additions and 12 deletions
|
|
@ -45,23 +45,23 @@
|
|||
/* #define LINUXKPI_DEBUG_80211 */
|
||||
|
||||
#ifndef D80211_TODO
|
||||
#define D80211_TODO 0x1
|
||||
#define D80211_TODO 0x00000001
|
||||
#endif
|
||||
#ifndef D80211_IMPROVE
|
||||
#define D80211_IMPROVE 0x2
|
||||
#define D80211_IMPROVE 0x00000002
|
||||
#endif
|
||||
#define D80211_IMPROVE_TXQ 0x4
|
||||
#define D80211_TRACE 0x10
|
||||
#define D80211_TRACEOK 0x20
|
||||
#define D80211_TRACE_TX 0x100
|
||||
#define D80211_TRACE_TX_DUMP 0x200
|
||||
#define D80211_TRACE_RX 0x1000
|
||||
#define D80211_TRACE_RX_DUMP 0x2000
|
||||
#define D80211_TRACE_RX_BEACONS 0x4000
|
||||
#define D80211_IMPROVE_TXQ 0x00000004
|
||||
#define D80211_TRACE 0x00000010
|
||||
#define D80211_TRACEOK 0x00000020
|
||||
#define D80211_TRACE_TX 0x00000100
|
||||
#define D80211_TRACE_TX_DUMP 0x00000200
|
||||
#define D80211_TRACE_RX 0x00001000
|
||||
#define D80211_TRACE_RX_DUMP 0x00002000
|
||||
#define D80211_TRACE_RX_BEACONS 0x00004000
|
||||
#define D80211_TRACEX (D80211_TRACE_TX|D80211_TRACE_RX)
|
||||
#define D80211_TRACEX_DUMP (D80211_TRACE_TX_DUMP|D80211_TRACE_RX_DUMP)
|
||||
#define D80211_TRACE_STA 0x10000
|
||||
#define D80211_TRACE_MO 0x100000
|
||||
#define D80211_TRACE_STA 0x00010000
|
||||
#define D80211_TRACE_MO 0x00100000
|
||||
|
||||
#define IMPROVE_TXQ(...) \
|
||||
if (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) \
|
||||
|
|
|
|||
Loading…
Reference in a new issue