From owner-p4-projects@FreeBSD.ORG Sun Feb 4 04:57:07 2007 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DE33C16A406; Sun, 4 Feb 2007 04:57:06 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9285916A403 for ; Sun, 4 Feb 2007 04:57:06 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 836B813C461 for ; Sun, 4 Feb 2007 04:57:06 +0000 (UTC) (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 l144v6Lv087984 for ; Sun, 4 Feb 2007 04:57:06 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l144v6UP087981 for perforce@freebsd.org; Sun, 4 Feb 2007 04:57:06 GMT (envelope-from sam@freebsd.org) Date: Sun, 4 Feb 2007 04:57:06 GMT Message-Id: <200702040457.l144v6UP087981@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to sam@freebsd.org using -f From: Sam Leffler To: Perforce Change Reviews Cc: Subject: PERFORCE change 113974 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Feb 2007 04:57:07 -0000 http://perforce.freebsd.org/chv.cgi?CH=113974 Change 113974 by sam@sam_ebb on 2007/02/04 04:56:12 reduce default roaming thresholds Affected files ... .. //depot/projects/wifi/sys/net80211/ieee80211_scan.c#9 edit Differences ... ==== //depot/projects/wifi/sys/net80211/ieee80211_scan.c#9 (text+ko) ==== @@ -80,12 +80,12 @@ * driver (dBm). Transmit rate thresholds are IEEE rate codes (i.e * .5M units). */ -#define ROAM_RSSI_11A_DEFAULT 24 /* rssi threshold for 11a bss */ -#define ROAM_RSSI_11B_DEFAULT 24 /* rssi threshold for 11b bss */ -#define ROAM_RSSI_11BONLY_DEFAULT 24 /* rssi threshold for 11b-only bss */ -#define ROAM_RATE_11A_DEFAULT 2*24 /* tx rate thresh for 11a bss */ -#define ROAM_RATE_11B_DEFAULT 2*9 /* tx rate thresh for 11b bss */ -#define ROAM_RATE_11BONLY_DEFAULT 2*5 /* tx rate thresh for 11b-only bss */ +#define ROAM_RSSI_11A_DEFAULT 14 /* rssi threshold for 11a bss */ +#define ROAM_RSSI_11B_DEFAULT 14 /* rssi threshold for 11b bss */ +#define ROAM_RSSI_11BONLY_DEFAULT 14 /* rssi threshold for 11b-only bss */ +#define ROAM_RATE_11A_DEFAULT 2*12 /* tx rate thresh for 11a bss */ +#define ROAM_RATE_11B_DEFAULT 2*5 /* tx rate thresh for 11b bss */ +#define ROAM_RATE_11BONLY_DEFAULT 2*1 /* tx rate thresh for 11b-only bss */ static void scan_restart_pwrsav(void *); static void scan_next(void *);