PERFORCE change 137136 for review

Sam Leffler sam at FreeBSD.org
Sat Mar 8 01:26:59 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=137136

Change 137136 by sam at sam_ebb on 2008/03/08 01:26:46

	show bg scan count

Affected files ...

.. //depot/projects/vap/tools/tools/net80211/wlanstats/wlanstats.c#5 edit

Differences ...

==== //depot/projects/vap/tools/tools/net80211/wlanstats/wlanstats.c#5 (text+ko) ====

@@ -188,7 +188,9 @@
 	{ 5,  "scan_active",	"scan_active",	"active scans started" },
 #define	S_SCAN_PASSIVE		AFTER(S_SCAN_ACTIVE)
 	{ 5,  "scan_passive",	"scan_passive",	"passive scans started" },
-#define	S_NODE_TIMEOUT		AFTER(S_SCAN_PASSIVE)
+#define	S_SCAN_BG		AFTER(S_SCAN_PASSIVE)
+	{ 5,  "scan_bg",	"scan_bg",	"background scans started" },
+#define	S_NODE_TIMEOUT		AFTER(S_SCAN_BG)
 	{ 5,  "node_timeout",	"node_timeout",	"nodes timed out for inactivity" },
 #define	S_CRYPTO_NOMEM		AFTER(S_NODE_TIMEOUT)
 	{ 5,  "crypto_nomem",	"crypto_nomem",	"cipher context malloc failed" },
@@ -582,6 +584,7 @@
 	case S_TX_FRAGS:	STAT(tx_frags);
 	case S_SCAN_ACTIVE:	STAT(scan_active);
 	case S_SCAN_PASSIVE:	STAT(scan_passive);
+	case S_SCAN_BG:		STAT(scan_bg);
 	case S_NODE_TIMEOUT:	STAT(node_timeout);
 	case S_CRYPTO_NOMEM:	STAT(crypto_nomem);
 	case S_CRYPTO_TKIP:	STAT(crypto_tkip);
@@ -724,6 +727,7 @@
 	case S_TX_FRAGS:	STAT(tx_frags);
 	case S_SCAN_ACTIVE:	STAT(scan_active);
 	case S_SCAN_PASSIVE:	STAT(scan_passive);
+	case S_SCAN_BG:		STAT(scan_bg);
 	case S_NODE_TIMEOUT:	STAT(node_timeout);
 	case S_CRYPTO_NOMEM:	STAT(crypto_nomem);
 	case S_CRYPTO_TKIP:	STAT(crypto_tkip);


More information about the p4-projects mailing list