From owner-cvs-src-old@FreeBSD.ORG Fri Jun 5 13:46:30 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01915106564A for ; Fri, 5 Jun 2009 13:46:30 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E17BB8FC14 for ; Fri, 5 Jun 2009 13:46:29 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n55DkTCt098947 for ; Fri, 5 Jun 2009 13:46:29 GMT (envelope-from luigi@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n55DkTPO098946 for cvs-src-old@freebsd.org; Fri, 5 Jun 2009 13:46:29 GMT (envelope-from luigi@repoman.freebsd.org) Message-Id: <200906051346.n55DkTPO098946@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to luigi@repoman.freebsd.org using -f From: Luigi Rizzo Date: Fri, 5 Jun 2009 13:44:30 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_bridge.c if_ethersubr.c src/sys/netinet ip_dummynet.h ip_fw.h ip_fw2.c ip_fw_pfil.c ip_input.c ip_var.h raw_ip.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2009 13:46:30 -0000 luigi 2009-06-05 13:44:30 UTC FreeBSD src repository Modified files: sys/net if_bridge.c if_ethersubr.c sys/netinet ip_dummynet.h ip_fw.h ip_fw2.c ip_fw_pfil.c ip_input.c ip_var.h raw_ip.c Log: SVN rev 193502 on 2009-06-05 13:44:30Z by luigi More cleanup in preparation of ipfw relocation (no actual code change): + move ipfw and dummynet hooks declarations to raw_ip.c (definitions in ip_var.h) same as for most other global variables. This removes some dependencies from ip_input.c; + remove the IPFW_LOADED macro, just test ip_fw_chk_ptr directly; + remove the DUMMYNET_LOADED macro, just test ip_dn_io_ptr directly; + move ip_dn_ruledel_ptr to ip_fw2.c which is the only file using it; To be merged together with rev 193497 MFC after: 5 days Revision Changes Path 1.126 +2 -2 src/sys/net/if_bridge.c 1.261 +3 -3 src/sys/net/if_ethersubr.c 1.45 +0 -7 src/sys/netinet/ip_dummynet.h 1.128 +0 -8 src/sys/netinet/ip_fw.h 1.224 +7 -1 src/sys/netinet/ip_fw2.c 1.37 +2 -5 src/sys/netinet/ip_fw_pfil.c 1.361 +0 -10 src/sys/netinet/ip_input.c 1.110 +9 -1 src/sys/netinet/ip_var.h 1.211 +9 -5 src/sys/netinet/raw_ip.c