From owner-cvs-src@FreeBSD.ORG Sat Jun 7 18:39:08 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 303061065677; Sat, 7 Jun 2008 18:39:08 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 237D78FC16; Sat, 7 Jun 2008 18:39:08 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m57Id8K6043441; Sat, 7 Jun 2008 18:39:08 GMT (envelope-from sam@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m57Id8b0043440; Sat, 7 Jun 2008 18:39:08 GMT (envelope-from sam@repoman.freebsd.org) Message-Id: <200806071839.m57Id8b0043440@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sam@repoman.freebsd.org using -f From: Sam Leffler Date: Sat, 7 Jun 2008 18:38:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c src/sys/dev/iwi if_iwi.c src/sys/dev/iwn if_iwn.c src/sys/dev/ral rt2560.c rt2661.c src/sys/dev/usb if_rum.c if_ural.c if_zyd.c src/sys/dev/wpi if_wpi.c src/sys/net80211 ieee80211_node.c ieee80211_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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, 07 Jun 2008 18:39:08 -0000 sam 2008-06-07 18:38:02 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c sys/dev/iwi if_iwi.c sys/dev/iwn if_iwn.c sys/dev/ral rt2560.c rt2661.c sys/dev/usb if_rum.c if_ural.c if_zyd.c sys/dev/wpi if_wpi.c sys/net80211 ieee80211_node.c ieee80211_var.h Log: SVN rev 179643 on 2008-06-07 18:38:02Z by sam Change the calling convention for ic_node_alloc to deal with some longstanding issues: o pass the vap since it's now the "coin of the realm" and required to do things like set initial tx parameters in private node state for use prior to association o pass the mac address as cards that maintain outboard station tables require this to create an entry (e.g. in ibss mode) o remove the node table reference, we only have one node table and it's unlikely this will change so this is not needed to find the com structure Revision Changes Path 1.191 +4 -3 src/sys/dev/ath/if_ath.c 1.63 +4 -3 src/sys/dev/iwi/if_iwi.c 1.7 +3 -2 src/sys/dev/iwn/if_iwn.c 1.26 +4 -3 src/sys/dev/ral/rt2560.c 1.26 +4 -3 src/sys/dev/ral/rt2661.c 1.23 +4 -2 src/sys/dev/usb/if_rum.c 1.74 +4 -2 src/sys/dev/usb/if_ural.c 1.18 +4 -2 src/sys/dev/usb/if_zyd.c 1.15 +4 -2 src/sys/dev/wpi/if_wpi.c 1.99 +5 -4 src/sys/net80211/ieee80211_node.c 1.59 +2 -1 src/sys/net80211/ieee80211_var.h