From owner-p4-projects@FreeBSD.ORG Sat Feb 28 10:54:33 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id AECA316A4D0; Sat, 28 Feb 2004 10:54:33 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7016016A4CE for ; Sat, 28 Feb 2004 10:54:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 699D943D2F for ; Sat, 28 Feb 2004 10:54:33 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1SIsXGe098590 for ; Sat, 28 Feb 2004 10:54:33 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1SIsXvW098587 for perforce@freebsd.org; Sat, 28 Feb 2004 10:54:33 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 28 Feb 2004 10:54:33 -0800 (PST) Message-Id: <200402281854.i1SIsXvW098587@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Subject: PERFORCE change 47807 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2004 18:54:34 -0000 http://perforce.freebsd.org/chv.cgi?CH=47807 Change 47807 by rwatson@rwatson_tislabs on 2004/02/28 10:54:21 m_tag is required, but it's now #ifdef FAST_IPSEC rather than global to the function. Note that the m_tag local to dummynet processing shadows the global one, suggesting that perhaps it shouldn't be local after all. Affected files ... .. //depot/projects/netperf_socket/sys/netinet/ip_input.c#5 edit Differences ... ==== //depot/projects/netperf_socket/sys/netinet/ip_input.c#5 (text+ko) ==== @@ -311,6 +311,7 @@ struct in_addr odst; /* original dst address */ #endif #ifdef FAST_IPSEC + struct m_tag *mtag; struct tdb_ident *tdbi; struct secpolicy *sp; int s, error;