From owner-cvs-all@FreeBSD.ORG Mon Sep 15 15:34:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5ECF16A4B3; Mon, 15 Sep 2003 15:34:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418D043FAF; Mon, 15 Sep 2003 15:34:47 -0700 (PDT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h8FMYl0U091986; Mon, 15 Sep 2003 15:34:47 -0700 (PDT) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h8FMYkuD091985; Mon, 15 Sep 2003 15:34:46 -0700 (PDT) Message-Id: <200309152234.h8FMYkuD091985@repoman.freebsd.org> From: Sam Leffler Date: Mon, 15 Sep 2003 15:34:46 -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/dev/ath if_ath.c if_athvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Sep 2003 22:34:47 -0000 sam 2003/09/15 15:34:46 PDT FreeBSD src repository Modified files: sys/dev/ath if_ath.c if_athvar.h Log: Maintain a history of data associated with received frames and use this to calculate smoothed signal quality data for each node. o add a 16-deep history buffer to each driver-private node storage that holds rssi and antenna info for received frames o override the default per-node "get rssi" method to return an average rssi value based on samples collected over the last second o enable beacon reception so even idle systems maintain a running history of signal quality This data may also be useful for improving the rate control algorithm. Based on work by Tom Marshall for MADWIFI. Revision Changes Path 1.18 +67 -5 src/sys/dev/ath/if_ath.c 1.8 +10 -0 src/sys/dev/ath/if_athvar.h