svn commit: r204208 - head/sys/net

Robert Watson rwatson at FreeBSD.org
Mon Feb 22 16:16:17 UTC 2010


Author: rwatson
Date: Mon Feb 22 16:16:16 2010
New Revision: 204208
URL: http://svn.freebsd.org/changeset/base/204208

Log:
  Fix constant assignment for netisr protocol information sysctl.
  
  MFC after:	1 week
  Spotted by:	bz

Modified:
  head/sys/net/netisr.h

Modified: head/sys/net/netisr.h
==============================================================================
--- head/sys/net/netisr.h	Mon Feb 22 16:05:45 2010	(r204207)
+++ head/sys/net/netisr.h	Mon Feb 22 16:16:16 2010	(r204208)
@@ -92,7 +92,7 @@ struct sysctl_netisr_proto {
  */
 #define	NETISR_SNP_FLAGS_M2FLOW		0x00000001	/* nh_m2flow */
 #define	NETISR_SNP_FLAGS_M2CPUID	0x00000002	/* nh_m2cpuid */
-#define	NETISR_SNP_FLAGS_DRAINEDCPU	0x00000003	/* nh_drainedcpu */
+#define	NETISR_SNP_FLAGS_DRAINEDCPU	0x00000004	/* nh_drainedcpu */
 
 /*
  * Next, a structure per-workstream, with per-protocol data, exported as


More information about the svn-src-all mailing list