Linux wireless drivers development
 help / color / mirror / Atom feed
From: Johannes Berg <johannes@sipsolutions.net>
To: John Linville <linville@tuxdriver.com>
Cc: linux-wireless@vger.kernel.org
Subject: pull-request: iwlwifi-next 2012-02-12
Date: Tue, 12 Feb 2013 17:01:31 +0100	[thread overview]
Message-ID: <1360684891.29913.4.camel@jlt4.sipsolutions.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 3312 bytes --]

John,

We continue work on our new driver, but I also have a WoWLAN and AP mode
improvement for the previous driver and a change to use threaded
interrupts to prepare us for working with non-PCIe devices.

Please pull.

Thanks,
johannes



The following changes since commit 8457703f1e86aaf0f134402dd1e09e1f13e65222:

  ath6kl: provide 64-bit per-station byte counters (2013-02-11 15:34:58 -0500)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-next.git for-john

for you to fetch changes up to 36eed56a8f7e1bd7fb5014ea0e702708e1702f30:

  iwlwifi: mvm: beautify code in rx_handlers (2013-02-12 16:52:26 +0100)

----------------------------------------------------------------
Beni Lev (1):
      iwlwifi: mvm: fix TKIP key updating

Emmanuel Grumbach (5):
      iwlwifi: don't ack the card state notification
      iwlwifi: mvm: fix the keyidx assignment
      iwlwifi: mvm: fix locking in iwl_mvm_ipv6_addr_change
      iwlwifi: mvm: use atomic interface iteration to avoid deadlock
      iwlwifi: mvm: beautify code in rx_handlers

Ilan Peer (2):
      iwlwifi: mvm: Update quota settings for all bindings
      iwlwifi: mvm: Change the Time Event type used for ROC

Johannes Berg (8):
      iwlwifi: use threaded interrupt handler
      Merge remote-tracking branch 'wireless-next/master' into iwlwifi-next
      iwlwifi: dvm: query and report WoWLAN wakeup reason
      iwlwifi: mvm: report wakeup reasons
      iwlwifi: dvm: apply beacon changes immediately
      iwlwifi: mvm: don't delay the association until after beacon
      iwlwifi: mvm: don't wait for session protection to start
      iwlwifi: mvm: update station when marked associated

 drivers/net/wireless/iwlwifi/dvm/commands.h   |  18 ++
 drivers/net/wireless/iwlwifi/dvm/mac80211.c   | 161 ++++++++++++++----
 drivers/net/wireless/iwlwifi/dvm/rx.c         |   2 +-
 drivers/net/wireless/iwlwifi/dvm/rxon.c       |   5 +-
 drivers/net/wireless/iwlwifi/dvm/sta.c        |   4 +-
 drivers/net/wireless/iwlwifi/dvm/tx.c         |  16 +-
 drivers/net/wireless/iwlwifi/iwl-op-mode.h    |  10 +-
 drivers/net/wireless/iwlwifi/iwl-trans.h      |  29 +++-
 drivers/net/wireless/iwlwifi/mvm/d3.c         | 174 +++++++++++++++----
 drivers/net/wireless/iwlwifi/mvm/fw-api.h     |   3 +
 drivers/net/wireless/iwlwifi/mvm/fw.c         |   4 -
 drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c   |   6 +-
 drivers/net/wireless/iwlwifi/mvm/mac80211.c   |  18 +-
 drivers/net/wireless/iwlwifi/mvm/ops.c        |  41 ++---
 drivers/net/wireless/iwlwifi/mvm/power.c      |   2 +-
 drivers/net/wireless/iwlwifi/mvm/quota.c      |  29 +++-
 drivers/net/wireless/iwlwifi/mvm/rx.c         |   2 +-
 drivers/net/wireless/iwlwifi/mvm/sta.c        |  40 ++++-
 drivers/net/wireless/iwlwifi/mvm/sta.h        |   6 +-
 drivers/net/wireless/iwlwifi/mvm/time-event.c | 232 ++++++++++----------------
 drivers/net/wireless/iwlwifi/mvm/tx.c         |  12 +-
 drivers/net/wireless/iwlwifi/pcie/internal.h  |   3 +-
 drivers/net/wireless/iwlwifi/pcie/rx.c        |  40 +++--
 drivers/net/wireless/iwlwifi/pcie/trans.c     |  11 +-
 drivers/net/wireless/iwlwifi/pcie/tx.c        |   8 +-
 25 files changed, 572 insertions(+), 304 deletions(-)


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

             reply	other threads:[~2013-02-12 16:01 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-12 16:01 Johannes Berg [this message]
2013-02-12 16:01 ` [PATCH 01/15] iwlwifi: don't ack the card state notification Johannes Berg
2013-02-12 16:01   ` [PATCH 02/15] iwlwifi: use threaded interrupt handler Johannes Berg
2013-02-12 16:01   ` [PATCH 03/15] iwlwifi: mvm: Update quota settings for all bindings Johannes Berg
2013-02-12 16:01   ` [PATCH 04/15] iwlwifi: mvm: Change the Time Event type used for ROC Johannes Berg
2013-02-12 16:01   ` [PATCH 05/15] iwlwifi: mvm: fix the keyidx assignment Johannes Berg
2013-02-12 16:01   ` [PATCH 06/15] iwlwifi: mvm: fix TKIP key updating Johannes Berg
2013-02-12 16:01   ` [PATCH 07/15] iwlwifi: mvm: fix locking in iwl_mvm_ipv6_addr_change Johannes Berg
2013-02-12 16:02   ` [PATCH 08/15] iwlwifi: mvm: use atomic interface iteration to avoid deadlock Johannes Berg
2013-02-12 16:02   ` [PATCH 09/15] iwlwifi: dvm: query and report WoWLAN wakeup reason Johannes Berg
2013-02-12 16:02   ` [PATCH 10/15] iwlwifi: mvm: report wakeup reasons Johannes Berg
2013-02-12 16:02   ` [PATCH 11/15] iwlwifi: dvm: apply beacon changes immediately Johannes Berg
2013-02-12 16:02   ` [PATCH 12/15] iwlwifi: mvm: don't delay the association until after beacon Johannes Berg
2013-02-12 16:02   ` [PATCH 13/15] iwlwifi: mvm: don't wait for session protection to start Johannes Berg
2013-02-12 16:02   ` [PATCH 14/15] iwlwifi: mvm: update station when marked associated Johannes Berg
2013-02-12 16:02   ` [PATCH 15/15] iwlwifi: mvm: beautify code in rx_handlers Johannes Berg
2013-02-12 17:37 ` pull-request: iwlwifi-next 2012-02-12 John W. Linville
2013-02-12 17:41   ` John W. Linville
2013-02-12 17:49     ` John W. Linville
2013-02-12 17:51     ` Johannes Berg

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=1360684891.29913.4.camel@jlt4.sipsolutions.net \
    --to=johannes@sipsolutions.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