linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
To: linville@tuxdriver.com
Cc: linux-wireless@vger.kernel.org,
	ipw3945-devel@lists.sourceforge.net,
	Wey-Yi Guy <wey-yi.w.guy@intel.com>
Subject: [PATCH 00/18]  update for 2.6.38
Date: Tue, 16 Nov 2010 08:01:33 -0800	[thread overview]
Message-ID: <1289923311-14920-1-git-send-email-wey-yi.w.guy@intel.com> (raw)

We add more changes to prepare P2P supports
We also add few features/changes to WiFi/BT coex,
such as dynamic aggregation.
For newer devices, we change the default LED mode to On/Off

Johannes Berg (9):
  iwlagn: fix some naming regarding FIFOs
  iwlagn: remove unused variable swq_id
  iwlagn: remove a bogus AGG_OFF check
  iwlwifi: pass txq to wake/stop queue
  iwlwifi: always build swq_id as virtual queue ID
  iwlagn: fix PAN queues
  iwlagn: avoid crash if vif is not assigned
  iwlagn: reprogram AP STA after assoc
  iwlagn: fix PAN slot timing wrt. DTIM

Shanyu Zhao (2):
  iwlagn: update QoS before commit associated RXON
  iwlagn: check change before commit RXON cmd

Wey-Yi Guy (7):
  iwlagn: used frame count info in compressed ba packet
  iwlagn: set dynamic aggregation threshold for BT
  iwlagn: support dynamic aggregation for BT coex
  iwlagn: change default ACK/CTS MASK setting for WiFi/BT coex
  iwlwifi: change default led mode for different devices
  iwlagn: use SKU information in the EEPROM
  iwlwifi: set STATUS_READY before commit_rxon

these patches are also available from wireless-next-2.6 branch on
 git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git

 drivers/net/wireless/iwlwifi/iwl-1000.c       |    8 +-
 drivers/net/wireless/iwlwifi/iwl-3945.c       |    4 +-
 drivers/net/wireless/iwlwifi/iwl-4965.c       |   13 +--
 drivers/net/wireless/iwlwifi/iwl-5000.c       |   14 ++--
 drivers/net/wireless/iwlwifi/iwl-6000.c       |   37 +++++-----
 drivers/net/wireless/iwlwifi/iwl-agn-eeprom.c |   21 +++++
 drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c   |    5 +-
 drivers/net/wireless/iwlwifi/iwl-agn-lib.c    |   17 +---
 drivers/net/wireless/iwlwifi/iwl-agn-rs.c     |   32 ++++----
 drivers/net/wireless/iwlwifi/iwl-agn-rxon.c   |  103 ++++++++++++++-----------
 drivers/net/wireless/iwlwifi/iwl-agn-tx.c     |   77 ++++++++++++-------
 drivers/net/wireless/iwlwifi/iwl-agn-ucode.c  |   65 +++++++++-------
 drivers/net/wireless/iwlwifi/iwl-agn.c        |   11 ++-
 drivers/net/wireless/iwlwifi/iwl-commands.h   |   13 ++-
 drivers/net/wireless/iwlwifi/iwl-core.c       |    2 +-
 drivers/net/wireless/iwlwifi/iwl-core.h       |    7 ++-
 drivers/net/wireless/iwlwifi/iwl-debugfs.c    |    9 +--
 drivers/net/wireless/iwlwifi/iwl-dev.h        |    3 +-
 drivers/net/wireless/iwlwifi/iwl-eeprom.h     |   12 +++-
 drivers/net/wireless/iwlwifi/iwl-helpers.h    |   36 ++++-----
 drivers/net/wireless/iwlwifi/iwl-led.c        |   10 ++-
 drivers/net/wireless/iwlwifi/iwl-led.h        |    6 +-
 drivers/net/wireless/iwlwifi/iwl-sta.c        |   51 +++++++++++-
 drivers/net/wireless/iwlwifi/iwl-sta.h        |    1 +
 drivers/net/wireless/iwlwifi/iwl-tx.c         |   11 +--
 drivers/net/wireless/iwlwifi/iwl3945-base.c   |    2 +-
 26 files changed, 345 insertions(+), 225 deletions(-)


             reply	other threads:[~2010-11-16 16:06 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-16 16:01 Wey-Yi Guy [this message]
2010-11-16 16:01 ` [PATCH 01/18] iwlagn: used frame count info in compressed ba packet Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 02/18] iwlagn: set dynamic aggregation threshold for BT Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 03/18] iwlagn: support dynamic aggregation for BT coex Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 04/18] iwlagn: change default ACK/CTS MASK setting for WiFi/BT coex Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 05/18] iwlwifi: change default led mode for different devices Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 06/18] iwlagn: fix some naming regarding FIFOs Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 07/18] iwlagn: remove unused variable swq_id Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 08/18] iwlagn: remove a bogus AGG_OFF check Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 09/18] iwlwifi: pass txq to wake/stop queue Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 10/18] iwlwifi: always build swq_id as virtual queue ID Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 11/18] iwlagn: fix PAN queues Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 12/18] iwlagn: avoid crash if vif is not assigned Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 13/18] iwlagn: reprogram AP STA after assoc Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 14/18] iwlagn: fix PAN slot timing wrt. DTIM Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 15/18] iwlagn: update QoS before commit associated RXON Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 16/18] iwlagn: use SKU information in the EEPROM Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 17/18] iwlagn: check change before commit RXON cmd Wey-Yi Guy
2010-11-16 16:01 ` [PATCH 18/18] iwlwifi: set STATUS_READY before commit_rxon Wey-Yi Guy
2010-11-16 21:02 ` [PATCH 00/18] update for 2.6.38 John W. Linville
2010-11-16 21:24   ` Rafał Miłecki
2010-11-16 21:39   ` Guy, Wey-Yi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1289923311-14920-1-git-send-email-wey-yi.w.guy@intel.com \
    --to=wey-yi.w.guy@intel.com \
    --cc=ipw3945-devel@lists.sourceforge.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).