Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Jan 2011 19:02:09 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r217449 - stable/8/sys/net
Message-ID:  <201101151902.p0FJ29XM034031@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rwatson
Date: Sat Jan 15 19:02:08 2011
New Revision: 217449
URL: http://svn.freebsd.org/changeset/base/217449

Log:
  Merge r204208 from head to stable/8:
  
    Fix constant assignment for netisr protocol information sysctl.
  
    Spotted by:     bz

Modified:
  stable/8/sys/net/netisr.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/net/netisr.h
==============================================================================
--- stable/8/sys/net/netisr.h	Sat Jan 15 19:00:22 2011	(r217448)
+++ stable/8/sys/net/netisr.h	Sat Jan 15 19:02:08 2011	(r217449)
@@ -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?201101151902.p0FJ29XM034031>