From owner-cvs-src@FreeBSD.ORG Sat Apr 24 14:59:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0494D16A4CE; Sat, 24 Apr 2004 14:59:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA9F543D66; Sat, 24 Apr 2004 14:59:41 -0700 (PDT) (envelope-from luigi@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 i3OLxfGe026358; Sat, 24 Apr 2004 14:59:41 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3OLxf1s026357; Sat, 24 Apr 2004 14:59:41 -0700 (PDT) (envelope-from luigi) Message-Id: <200404242159.i3OLxf1s026357@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 24 Apr 2004 14:59:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_ethersubr.c if_fddisubr.c if_iso88025subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Apr 2004 21:59:42 -0000 luigi 2004/04/24 14:59:41 PDT FreeBSD src repository Modified files: sys/net if_ethersubr.c if_fddisubr.c if_iso88025subr.c Log: arpcom untangling: - use ifp instead if &ac->ac_if in a couple of nd6* calls; this removes a useless dependency. - use IFP2AC(ifp) instead of an extra variable to point to the struct arpcom; this does not remove the nesting dependency between arpcom and ifnet but makes it more evident. Revision Changes Path 1.168 +3 -4 src/sys/net/if_ethersubr.c 1.93 +2 -3 src/sys/net/if_fddisubr.c 1.63 +2 -3 src/sys/net/if_iso88025subr.c