From owner-cvs-src@FreeBSD.ORG Fri Dec 31 22:05:14 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 F200216A4CE; Fri, 31 Dec 2004 22:05:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1C8A43D39; Fri, 31 Dec 2004 22:05:13 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iBVM5DIm044280; Fri, 31 Dec 2004 22:05:13 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iBVM5DWY044279; Fri, 31 Dec 2004 22:05:13 GMT (envelope-from sam) Message-Id: <200412312205.iBVM5DWY044279@repoman.freebsd.org> From: Sam Leffler Date: Fri, 31 Dec 2004 22:05:13 +0000 (UTC) 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_input.c ieee80211_node.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: Fri, 31 Dec 2004 22:05:14 -0000 sam 2004-12-31 22:05:13 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_input.c ieee80211_node.c Log: fixup inactivity timers: o ic_inact_auth is a bad name, it's the inactivity threshold for being associated but not authorized; use it that way o reset ni_inact when switching inactivity thresholds to minimize the race against the timer (don't want to lock for this stuff) o change the inactivity probe threshold from a one-shot to cover a range: when below this threshold but not expired send a probe each inactivity interval; should probably guard against the interval being turned way down as this could cause us to spam the net with probes Revision Changes Path 1.27 +0 -2 src/sys/net80211/ieee80211_input.c 1.29 +7 -3 src/sys/net80211/ieee80211_node.c