Re: [ath9k-devel] Beacon reception/transmission handling

2011-01-05 Thread Mohammed Shafi
On Thu, Jan 6, 2011 at 4:29 AM, Lara Deek wrote: > Hello, > I would please like to ask what are the relevant places for code change in > ath9k for beacon reception and transmission? Also, which struct can I change > to control the contents of a beacon packet? Please look at beacon.c in ath9k and

[ath9k-devel] Beacon reception/transmission handling

2011-01-05 Thread Lara Deek
Hello, I would please like to ask what are the relevant places for code change in ath9k for beacon reception and transmission? Also, which struct can I change to control the contents of a beacon packet? Furthermore, I want to send an interrupt to ath9k devices from a single central controller to

[ath9k-devel] [PATCH 4/5] ath9k: Ensure xmit makes progress.

2011-01-05 Thread greearb
From: Ben Greear If the txq->axq_q is empty, the code was breaking out of the tx_processq logic without checking to see if it should transmit other queued AMPDU frames (txq->axq_acq). This patches ensures ath_txq_schedule is called. This needs review. Signed-off-by: Ben Greear --- :100644 100

[ath9k-devel] [PATCH 2/5] ath9k: Add more information to debugfs xmit file.

2011-01-05 Thread greearb
From: Ben Greear Should help debug strange tx lockup type issues. Signed-off-by: Ben Greear --- :100644 100644 5075faa... 577bc5a... M drivers/net/wireless/ath/ath9k/debug.c :100644 100644 1e5078b... cd2db3f... M drivers/net/wireless/ath/ath9k/debug.h :100644 100644 e3d2ebf... 1fcc1a5... M d

[ath9k-devel] [PATCH 5/5] ath9k: Add counters to distinquish AMPDU enqueues.

2011-01-05 Thread greearb
From: Ben Greear Show counters for pkts sent directly to hardware and those queued in software. Signed-off-by: Ben Greear --- :100644 100644 577bc5a... faf84e4... M drivers/net/wireless/ath/ath9k/debug.c :100644 100644 cd2db3f... 980c9fa... M drivers/net/wireless/ath/ath9k/debug.h :100644 100

[ath9k-devel] [PATCH 3/5] ath9k: Remove un-used member from ath_node.

2011-01-05 Thread greearb
From: Ben Greear Signed-off-by: Ben Greear --- :100644 100644 2c31f51... 8855539... M drivers/net/wireless/ath/ath9k/ath9k.h drivers/net/wireless/ath/ath9k/ath9k.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wir

[ath9k-devel] [PATCH 1/5] ath9k: Initialize ah->hw

2011-01-05 Thread greearb
From: Ben Greear Previous code left it NULL. Signed-off-by: Ben Greear --- :100644 100644 b0e5e716.. 9ca87de... M drivers/net/wireless/ath/ath9k/init.c drivers/net/wireless/ath/ath9k/init.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k

Re: [ath9k-devel] 802.11 a/b/g/n dual-band PC card

2011-01-05 Thread Peter Stuge
Lara Deek wrote: > I wanted to ask if anyone has any particular recommendations or > preferences between the two PC cards that I outlined. Ubiquiti in general makes good products. //Peter ___ ath9k-devel mailing list ath9k-devel@lists.ath9k.org https:/

Re: [ath9k-devel] [ath5k-devel] [PATCH 1/3] ath5k: move nohwcrypt to ath_common structure

2011-01-05 Thread Bob Copeland
On Wed, Jan 5, 2011 at 2:53 PM, Joe Perches wrote: > > bool is OK. > Yes, I was agreeing, just pointing out (for my own benefit, I guess) that the old rule of using int for bool modparams no longer holds. -- Bob Copeland %% www.bobcopeland.com ___ ath

Re: [ath9k-devel] 802.11 a/b/g/n dual-band PC card

2011-01-05 Thread Lara Deek
Thank you for the link. I had actually checked it and found this one useful as well http://wireless.kernel.org/en/users/Drivers/ath9k/products/external. Some of the dual-band 802.11a/b/g/n PC cards which can use ath9k are unfortunately not sold by retail (such as the DNBA-81 2x3 DB cardbus). I want

Re: [ath9k-devel] [PATCH 1/3] ath5k: move nohwcrypt to ath_common structure

2011-01-05 Thread Bob Copeland
On Wed, Jan 5, 2011 at 2:40 PM, Joe Perches wrote: > On Wed, 2011-01-05 at 14:22 -0500, John W. Linville wrote: > >> diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h > [] >> +     bool nohwcrypt; > >> diff --git a/drivers/net/wireless/ath/ath5k/base.c >> b/drivers/net/

Re: [ath9k-devel] [PATCH 1/3] ath5k: move nohwcrypt to ath_common structure

2011-01-05 Thread Joe Perches
On Wed, 2011-01-05 at 14:49 -0500, Bob Copeland wrote: > On Wed, Jan 5, 2011 at 2:40 PM, Joe Perches wrote: > > On Wed, 2011-01-05 at 14:22 -0500, John W. Linville wrote: > >> diff --git a/drivers/net/wireless/ath/ath.h > >> b/drivers/net/wireless/ath/ath.h > > [] > >> + bool nohwcrypt; > >>

Re: [ath9k-devel] [PATCH 1/3] ath5k: move nohwcrypt to ath_common structure

2011-01-05 Thread Joe Perches
On Wed, 2011-01-05 at 14:22 -0500, John W. Linville wrote: > diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h [] > + bool nohwcrypt; > diff --git a/drivers/net/wireless/ath/ath5k/base.c > b/drivers/net/wireless/ath/ath5k/base.c > -int modparam_nohwcrypt; > +static

[ath9k-devel] [PATCH 1/3] ath5k: move nohwcrypt to ath_common structure

2011-01-05 Thread John W. Linville
Signed-off-by: John W. Linville --- drivers/net/wireless/ath/ath.h|1 + drivers/net/wireless/ath/ath5k/base.c |3 ++- drivers/net/wireless/ath/ath5k/mac80211-ops.c |3 +-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/ath/a

[ath9k-devel] [PATCH 3/3] ath9k_htc: use nohwcrypt in ath_common structure

2011-01-05 Thread John W. Linville
Signed-off-by: John W. Linville --- drivers/net/wireless/ath/ath9k/htc.h |1 - drivers/net/wireless/ath/ath9k/htc_drv_init.c |5 +++-- drivers/net/wireless/ath/ath9k/htc_drv_main.c |2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/ath/

[ath9k-devel] [PATCH 2/3] ath9k: use nohwcrypt in ath_common structure

2011-01-05 Thread John W. Linville
Signed-off-by: John W. Linville --- drivers/net/wireless/ath/ath9k/ath9k.h |1 - drivers/net/wireless/ath/ath9k/init.c |5 +++-- drivers/net/wireless/ath/ath9k/main.c |2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/driv

Re: [ath9k-devel] [PATCH] ath9k: qualify global modparam_nohwcrypt variable

2011-01-05 Thread John W. Linville
I believe I would prefer the version I just sent, that moves nohwcrypt to ath_common... John On Wed, Jan 05, 2011 at 09:39:17AM -0500, John W. Linville wrote: > Signed-off-by: John W. Linville > --- > drivers/net/wireless/ath/ath9k/ath9k.h |2 +- > drivers/net/wireless/ath/ath9k/init.c |

[ath9k-devel] [PATCH] ath9k: correct MODULE_PARM_DESC parameters for force_new_ani

2011-01-05 Thread John W. Linville
Signed-off-by: John W. Linville --- drivers/net/wireless/ath/ath9k/ar9002_hw.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k/ar9002_hw.c b/drivers/net/wireless/ath/ath9k/ar9002_hw.c index fdb5a83..f8a7771 100644 --- a/drivers/net/wireles

Re: [ath9k-devel] [PATCH] ath9k: Show some live tx-queue values in debugfs.

2011-01-05 Thread Ben Greear
On 12/07/2010 09:55 AM, gree...@candelatech.com wrote: > From: Ben Greear > > I thought this might help track down stuck queues, etc. Any comments on this one? Seems it was never picked up... Thanks, Ben > > Signed-off-by: Ben Greear > --- > :100644 100644 3586c43... 5075faa... M > driv

[ath9k-devel] [PATCH] ath9k: qualify global modparam_nohwcrypt variable

2011-01-05 Thread John W. Linville
Signed-off-by: John W. Linville --- drivers/net/wireless/ath/ath9k/ath9k.h |2 +- drivers/net/wireless/ath/ath9k/init.c |6 +++--- drivers/net/wireless/ath/ath9k/main.c |2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/dr