From owner-svn-src-all@FreeBSD.ORG Sat Apr 28 23:13:09 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF6B4106566B; Sat, 28 Apr 2012 23:13:09 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AADBE8FC12; Sat, 28 Apr 2012 23:13:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q3SND91W085148; Sat, 28 Apr 2012 23:13:09 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3SND9rU085146; Sat, 28 Apr 2012 23:13:09 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201204282313.q3SND9rU085146@svn.freebsd.org> From: Adrian Chadd Date: Sat, 28 Apr 2012 23:13:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234777 - head/tools/tools/ath/athsurvey X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Apr 2012 23:13:09 -0000 Author: adrian Date: Sat Apr 28 23:13:09 2012 New Revision: 234777 URL: http://svn.freebsd.org/changeset/base/234777 Log: Change cc -> bc : "bc" is "busy count", which is the % of time the channel is considered "busy but not doing any active TX or frame RX." Just keep in mind that "frame RX" is "decoding what looks like a wifi signal", not necessarily "frame successfully decoded for this particular device." Modified: head/tools/tools/ath/athsurvey/athsurvey.c Modified: head/tools/tools/ath/athsurvey/athsurvey.c ============================================================================== --- head/tools/tools/ath/athsurvey/athsurvey.c Sat Apr 28 23:05:08 2012 (r234776) +++ head/tools/tools/ath/athsurvey/athsurvey.c Sat Apr 28 23:13:09 2012 (r234777) @@ -201,9 +201,9 @@ main(int argc, char *argv[]) "min " "avg " "max\n"); - printf(" tx%% rx%% cc%% ec%% "); - printf(" tx%% rx%% cc%% ec%% "); - printf(" tx%% rx%% cc%% ec%%\n"); + printf(" tx%% rx%% bc%% ec%% "); + printf(" tx%% rx%% bc%% ec%% "); + printf(" tx%% rx%% bc%% ec%%\n"); } process_survey_stats(&hs); sleep(1);