From owner-cvs-all@FreeBSD.ORG Tue Mar 9 20:56:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 688C016A4CE; Tue, 9 Mar 2004 20:56:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A3B343D39; Tue, 9 Mar 2004 20:56:55 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2A4utGe032254; Tue, 9 Mar 2004 20:56:55 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2A4utYr032253; Tue, 9 Mar 2004 20:56:55 -0800 (PST) (envelope-from rwatson) Message-Id: <200403100456.i2A4utYr032253@repoman.freebsd.org> From: Robert Watson Date: Tue, 9 Mar 2004 20:56:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 ah_core.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Mar 2004 04:56:55 -0000 rwatson 2004/03/09 20:56:55 PST FreeBSD src repository Modified files: sys/netinet6 ah_core.c Log: Move the AH algorithm list from a static local function variable to a static const global variable in ah_core.c. This makes it more clear that this array does not require synchronization, as well as synchronizing the layout to the ESP algorithm list. This is the version of my patch that Itojun committed to the KAME tree. Obtained from: me, via KAME Revision Changes Path 1.23 +38 -37 src/sys/netinet6/ah_core.c