From owner-cvs-src@FreeBSD.ORG Sat Sep 2 17:09:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 3F3BC16A4DE; Sat, 2 Sep 2006 17:09:27 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E06D43D49; Sat, 2 Sep 2006 17:09:27 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k82H9QbU047179; Sat, 2 Sep 2006 17:09:26 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k82H9QXJ047178; Sat, 2 Sep 2006 17:09:26 GMT (envelope-from sam) Message-Id: <200609021709.k82H9QXJ047178@repoman.freebsd.org> From: Sam Leffler Date: Sat, 2 Sep 2006 17:09:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src UPDATING src/sys/sys param.h src/sys/net80211 ieee80211_ioctl.c ieee80211_ioctl.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, 02 Sep 2006 17:09:27 -0000 sam 2006-09-02 17:09:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING sys/sys param.h sys/net80211 ieee80211_ioctl.c ieee80211_ioctl.h Log: MFC: statistics fixups: o change rssi to be signed in ieee80211_nodestats o add noise floor in ieee80211_nodestats (use an implicit hole to preserve layout); return it as zero until we can update the api's so the driver can provide noise floor data o add a bandaid so IEEE80211_IOC_STA_STATS works for sta mode; when all nodes are in the station table this will no longer be needed o fix braino in IEEE80211_IOC_STA_INFO implementation; was supposed to take a mac address and return info for that sta or all stations if ff:ff:ff:ff:ff was supplied--but somehow this didn't get implemented; implement the intended semantics and leave a compat shim at the old ioctl number for the previous api Note this changes the api for IEEE80211_IOC_STA_INFO but old binaries will continue to work. FreeBSD_version bumped so apps can track the change (no such applications are known to exist but just in case). Revision Changes Path 1.416.2.27 +6 -0 src/UPDATING 1.25.2.15 +72 -15 src/sys/net80211/ieee80211_ioctl.c 1.10.2.7 +5 -3 src/sys/net80211/ieee80211_ioctl.h 1.244.2.16 +1 -1 src/sys/sys/param.h