From owner-svn-src-all@FreeBSD.ORG Mon Feb 22 16:16:17 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17892106566C; Mon, 22 Feb 2010 16:16:17 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 053ED8FC16; Mon, 22 Feb 2010 16:16:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o1MGGGPd093992; Mon, 22 Feb 2010 16:16:16 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1MGGG1g093990; Mon, 22 Feb 2010 16:16:16 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <201002221616.o1MGGG1g093990@svn.freebsd.org> From: Robert Watson Date: Mon, 22 Feb 2010 16:16:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204208 - head/sys/net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2010 16:16:17 -0000 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