Date: Mon, 22 Feb 2010 16:16:16 +0000 (UTC) From: Robert Watson <rwatson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r204208 - head/sys/net Message-ID: <201002221616.o1MGGG1g093990@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002221616.o1MGGG1g093990>