From owner-cvs-src@FreeBSD.ORG Fri Apr 2 15:25:39 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 D4CD416A4CE; Fri, 2 Apr 2004 15:25:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF40C43D1F; Fri, 2 Apr 2004 15:25:39 -0800 (PST) (envelope-from sam@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 i32NPdGe040522; Fri, 2 Apr 2004 15:25:39 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i32NPdOA040521; Fri, 2 Apr 2004 15:25:39 -0800 (PST) (envelope-from sam) Message-Id: <200404022325.i32NPdOA040521@repoman.freebsd.org> From: Sam Leffler Date: Fri, 2 Apr 2004 15:25:39 -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/net80211 ieee80211_node.c ieee80211_node.h ieee80211_output.c ieee80211_var.h 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: Fri, 02 Apr 2004 23:25:40 -0000 sam 2004/04/02 15:25:39 PST FreeBSD src repository Modified files: sys/net80211 ieee80211_node.c ieee80211_node.h ieee80211_output.c ieee80211_var.h Log: fix adhoc/ibss operation for drivers that require host support (e.g. ath): o remove IEEE80211_C_RCVMGT capability o on transmit craft new nodes as needed using new ieee80211_find_txnode routine o add ieee80211_find_txnode routine to lookup a node by mac address and if not present create one when operating in ibss/ahdemo mode; new nodes are dup'd from bss and the driver is told to treat the node as if a new association has been created so driver-private state (e.g. rate control handling) is setup Obtained from: netbsd (basic idea) Revision Changes Path 1.20 +70 -6 src/sys/net80211/ieee80211_node.c 1.8 +2 -0 src/sys/net80211/ieee80211_node.h 1.10 +7 -29 src/sys/net80211/ieee80211_output.c 1.13 +0 -1 src/sys/net80211/ieee80211_var.h