All of lore.kernel.org
 help / color / mirror / Atom feed
From: Emmanuel Grumbach <egrumbach@gmail.com>
To: John Linville <linville@tuxdriver.com>
Cc: linux-wireless <linux-wireless@vger.kernel.org>,
	Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Subject: pull request: iwlwifi-next 2014-07-22
Date: Tue, 22 Jul 2014 22:15:32 +0300	[thread overview]
Message-ID: <53CEB854.9000008@gmail.com> (raw)

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

Hi John,

here is a pull request for 3.17.

I have the usual amount of BT Coex stuff. Arik continues to work on TDLS and Ariej contributes a few things for HS2.0. I added a few more things to the firmware debugging infrastructure. Eran fixes a small bug - pretty normal content.

I merged iwlwifi-fixes to avoid a conflict. I also merged wireless-next because I needed some bits from mac80211.
Let me know if this causes you any trouble!


The following changes since commit a006827a152c3f4d09324157096c8f89cf7ddca3:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next (2014-07-22 13:49:34 -0400)

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 f697267f827516fba4d0c325ed1db1e72f402f11:
----------------------------------------------------------------
Ariej Marjieh (3):
      iwlwifi: mvm: Enabling Aux Queue
      iwlwifi: mvm: Define AUX ROC Command
      iwlwifi: mvm: add Aux ROC request/response flow

Arik Nemtsov (1):
      iwlwifi: mvm: teardown TDLS peers during chan-switch and AP DCM

Eliad Peller (3):
      iwlwifi: mvm: pass beacons from foreign APs
      iwlwifi: mvm: add some missing iwl_mvm_ref_sync() calls
      iwlwifi: mvm: wait for handlers when stopping scans

Emmanuel Grumbach (13):
      iwlwifi: mvm: fix merge damage
      iwlwifi: mvm: BT Coex - fix TLC with old API
      iwlwifi: fix Kconfig issues
      iwlwifi: mvm: use C99 initializers for add_sta
      iwlwifi: mvm: BT Coex - fix the ACK / CTS kill mask
      iwlwifi: mvm: BT Coex - don't change AP SMPS mode
      iwlwifi: fix inconsistency about power_save module parameter
      iwlwifi: split fw-error-dump between transport and mvm
      iwlwifi: dump periphery registers to fw-error-dump
      iwlwifi: dump CSRs to fw-error-dump
      iwlwifi: mvm: reset beacon filtering and BT Coex data upon FW restart
      Merge branch 'iwlwifi-fixes' into iwlwifi-next
      Merge remote-tracking branch 'wireless-next/master' into iwlwifi-next

Eran Harary (2):
      iwlwifi: mvm: minor change in debug print
      iwlwifi: mvm: update smart fifo / beacon filtering upon association

Eytan Lifshitz (1):
      iwlwifi: mvm: fix wrong offset while reading from NVM

Oren Givon (1):
      iwlwifi: add max RX aggregation size

 drivers/net/wireless/iwlwifi/Kconfig             |  25 +--
 drivers/net/wireless/iwlwifi/iwl-8000.c          |   4 +
 drivers/net/wireless/iwlwifi/iwl-config.h        |   2 +
 drivers/net/wireless/iwlwifi/iwl-fw-error-dump.h |  17 +-
 drivers/net/wireless/iwlwifi/iwl-modparams.h     |   2 +-
 drivers/net/wireless/iwlwifi/iwl-trans.h         |  21 +--
 drivers/net/wireless/iwlwifi/mvm/coex.c          | 193 ++++++++++------------
 drivers/net/wireless/iwlwifi/mvm/coex_legacy.c   | 119 +++-----------
 drivers/net/wireless/iwlwifi/mvm/debugfs.c       | 104 +++++++++---
 drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h   |   2 +
 drivers/net/wireless/iwlwifi/mvm/fw-api.h        |  67 ++++++++
 drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c      |  15 +-
 drivers/net/wireless/iwlwifi/mvm/mac80211.c      | 383 +++++++++++++++++++++++++++++++++-----------
 drivers/net/wireless/iwlwifi/mvm/mvm.h           |  52 +++++-
 drivers/net/wireless/iwlwifi/mvm/nvm.c           |   4 +-
 drivers/net/wireless/iwlwifi/mvm/ops.c           |  14 +-
 drivers/net/wireless/iwlwifi/mvm/sta.c           |  24 +--
 drivers/net/wireless/iwlwifi/mvm/time-event.c    |  89 ++++++++--
 drivers/net/wireless/iwlwifi/mvm/tt.c            |  12 +-
 drivers/net/wireless/iwlwifi/mvm/tx.c            |  10 ++
 drivers/net/wireless/iwlwifi/pcie/trans.c        | 202 ++++++++++++++++++++++-
 21 files changed, 966 insertions(+), 395 deletions(-)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]

             reply	other threads:[~2014-07-22 19:15 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-22 19:15 Emmanuel Grumbach [this message]
2014-07-22 19:26 ` [PATCH 01/20] iwlwifi: mvm: BT Coex - fix TLC with old API Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 02/20] iwlwifi: add max RX aggregation size Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 03/20] iwlwifi: fix Kconfig issues Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 04/20] iwlwifi: mvm: use C99 initializers for add_sta Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 05/20] iwlwifi: mvm: fix wrong offset while reading from NVM Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 06/20] iwlwifi: mvm: add some missing iwl_mvm_ref_sync() calls Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 07/20] iwlwifi: mvm: Enabling Aux Queue Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 08/20] iwlwifi: mvm: Define AUX ROC Command Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 09/20] iwlwifi: mvm: add Aux ROC request/response flow Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 10/20] iwlwifi: mvm: BT Coex - fix the ACK / CTS kill mask Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 11/20] iwlwifi: mvm: BT Coex - don't change AP SMPS mode Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 12/20] iwlwifi: mvm: wait for handlers when stopping scans Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 13/20] iwlwifi: mvm: minor change in debug print Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 14/20] iwlwifi: fix inconsistency about power_save module parameter Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 15/20] iwlwifi: split fw-error-dump between transport and mvm Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 16/20] iwlwifi: dump periphery registers to fw-error-dump Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 17/20] iwlwifi: dump CSRs " Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 18/20] iwlwifi: mvm: update smart fifo / beacon filtering upon association Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 19/20] iwlwifi: mvm: reset beacon filtering and BT Coex data upon FW restart Emmanuel Grumbach
2014-07-22 19:26 ` [PATCH 20/20] iwlwifi: mvm: teardown TDLS peers during chan-switch and AP DCM Emmanuel Grumbach
2014-07-23 17:08 ` pull request: iwlwifi-next 2014-07-22 John W. Linville

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=53CEB854.9000008@gmail.com \
    --to=egrumbach@gmail.com \
    --cc=emmanuel.grumbach@intel.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.