All of lore.kernel.org
 help / color / mirror / Atom feed
* pull request: iwlwifi-next 2014-09-21
@ 2014-09-21 19:15 Emmanuel Grumbach
  2014-09-21 19:21 ` Emmanuel Grumbach
                   ` (17 more replies)
  0 siblings, 18 replies; 30+ messages in thread
From: Emmanuel Grumbach @ 2014-09-21 19:15 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless, emmanuel Grumbach

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

Hi John,

Here is another (last?) pull request for 3.18.

I have here a few things that depend on the latest mac80211's changes: RRM, TPC, Quiet Period etc...
Eyal keeps improving our rate control and we have a new device ID. This last patch should probably
have gone to wireless.git, but at that stage, I preferred to send it to -next and CC stable.

Let me know if you have issues!

The following changes since commit 6bd2bd27baf12fa0f2e6d611509fc0e1bffb0f97:

  Merge tag 'mac80211-next-for-john-2014-09-12' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next (2014-09-15 14:51:23 -0400)

are available in the git repository at:


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

for you to fetch changes up to 908f324b609320a8839211922f8c4946c891d56c:

  iwlwifi: mvm: Refactor and fix max probe len computation (2014-09-21 13:25:50 +0300)

----------------------------------------------------------------
Alexander Bondar (1):
      iwlwifi: mvm: Allow schedule scan while connected

Andrei Otcheretianski (3):
      iwlwifi: mvm: Update TX power in TPC reports
      iwlwifi: mvm: Set RRM_ENABLED bit in scan commands
      iwlwifi: mvm: Refactor and fix max probe len computation

Assaf Krauss (1):
      iwlwifi: mvm: Announce Quiet Period support

Avri Altman (1):
      iwlwifi: mvm: prepare for scheduler config command

Emmanuel Grumbach (1):
      iwlwifi: mvm: disable BT Co-running by default

Eyal Shapira (5):
      iwlwifi: mvm: choose an initial tx rate based on rssi conditions
      iwlwifi: mvm: rs: refactor to allow direct rs updating
      iwlwifi: mvm: limit aggregation size in low latency to 6
      iwlwifi: mvm: report all BA notifs to RS
      iwlwifi: mvm: rs: fix logic in case of multiple TIDs

Ido Yariv (1):
      iwlwifi: mvm: support cloned tx skbs

Liad Kaufman (2):
      iwlwifi: pcie: fix HW_REV saving for 8000 series
      iwlwifi: 8000: fix fw name to account for revision

Luciano Coelho (1):
      iwlwifi: mvm: add debugfs entry to read the current temperature

Oren Givon (1):
      iwlwifi: Add missing PCI IDs for the 7260 series

 drivers/net/wireless/iwlwifi/iwl-8000.c        |   2 +-
 drivers/net/wireless/iwlwifi/iwl-drv.c         |  18 +++++++++++
 drivers/net/wireless/iwlwifi/iwl-fw.h          |  17 +++++++++-
 drivers/net/wireless/iwlwifi/mvm/constants.h   |   3 +-
 drivers/net/wireless/iwlwifi/mvm/debugfs.c     |  25 +++++++++++++++
 drivers/net/wireless/iwlwifi/mvm/fw-api-scan.h |   3 ++
 drivers/net/wireless/iwlwifi/mvm/fw-api-tx.h   |   2 ++
 drivers/net/wireless/iwlwifi/mvm/fw-api.h      |  60 ++++++++++++++++++++++++++++++++++++
 drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c    |  20 ++++++------
 drivers/net/wireless/iwlwifi/mvm/mac80211.c    |  37 +++++++++++++++-------
 drivers/net/wireless/iwlwifi/mvm/mvm.h         |  43 ++++++++++++++++++++++++++
 drivers/net/wireless/iwlwifi/mvm/ops.c         |   3 +-
 drivers/net/wireless/iwlwifi/mvm/rs.c          | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------
 drivers/net/wireless/iwlwifi/mvm/rs.h          |   4 +++
 drivers/net/wireless/iwlwifi/mvm/rx.c          |  41 +++++++++++++++----------
 drivers/net/wireless/iwlwifi/mvm/scan.c        |  79 +++++++++++++++++++++++++++++++++++++++--------
 drivers/net/wireless/iwlwifi/mvm/sta.c         |  20 ++++++++----
 drivers/net/wireless/iwlwifi/mvm/sta.h         |   2 ++
 drivers/net/wireless/iwlwifi/mvm/tt.c          |   2 +-
 drivers/net/wireless/iwlwifi/mvm/tx.c          |  60 ++++++++++++++++++++++++++++--------
 drivers/net/wireless/iwlwifi/mvm/utils.c       |  46 ++++++++++++++++++++++++++++
 drivers/net/wireless/iwlwifi/pcie/drv.c        |   4 +++
 drivers/net/wireless/iwlwifi/pcie/trans.c      |   2 +-
 23 files changed, 573 insertions(+), 160 deletions(-)


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

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2015-11-26 17:05 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-21 19:15 pull request: iwlwifi-next 2014-09-21 Emmanuel Grumbach
2014-09-21 19:21 ` Emmanuel Grumbach
2014-09-26 17:35   ` John W. Linville
2014-09-21 19:22 ` [PATCH 01/17] iwlwifi: mvm: support cloned tx skbs Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 02/17] iwlwifi: mvm: Update TX power in TPC reports Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 03/17] iwlwifi: mvm: Announce Quiet Period support Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 04/17] iwlwifi: mvm: Set RRM_ENABLED bit in scan commands Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 05/17] iwlwifi: mvm: prepare for scheduler config command Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 06/17] iwlwifi: mvm: add debugfs entry to read the current temperature Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 07/17] iwlwifi: mvm: Allow schedule scan while connected Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 08/17] iwlwifi: mvm: choose an initial tx rate based on rssi conditions Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 09/17] iwlwifi: mvm: rs: refactor to allow direct rs updating Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 10/17] iwlwifi: mvm: limit aggregation size in low latency to 6 Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 11/17] iwlwifi: Add missing PCI IDs for the 7260 series Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 12/17] iwlwifi: pcie: fix HW_REV saving for 8000 series Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 13/17] iwlwifi: 8000: fix fw name to account for revision Emmanuel Grumbach
2014-09-22 10:45   ` Bjørn Mork
2014-09-22 17:28     ` Grumbach, Emmanuel
2014-09-23 11:09       ` Bjørn Mork
2014-09-23 11:38         ` Grumbach, Emmanuel
2014-09-26 19:44           ` Luca Coelho
2014-09-27  6:41             ` Bjørn Mork
2015-11-21 21:12               ` [PATCH] iwlwifi: mvm: add hwmon device for the temperature sensor Bjørn Mork
2015-11-26 15:46                 ` Johannes Berg
2015-11-26 16:52                   ` Bjørn Mork
2015-11-26 17:04                     ` Johannes Berg
2014-09-21 19:22 ` [PATCH 14/17] iwlwifi: mvm: report all BA notifs to RS Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 15/17] iwlwifi: mvm: rs: fix logic in case of multiple TIDs Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 16/17] iwlwifi: mvm: disable BT Co-running by default Emmanuel Grumbach
2014-09-21 19:22 ` [PATCH 17/17] iwlwifi: mvm: Refactor and fix max probe len computation Emmanuel Grumbach

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.