All of lore.kernel.org
 help / color / mirror / Atom feed
From: "John W. Linville" <linville@tuxdriver.com>
To: davem@davemloft.net
Cc: linux-wireless@vger.kernel.org, netdev@vger.kernel.org
Subject: pull request: wireless-next 2013-02-19
Date: Tue, 19 Feb 2013 17:04:58 -0500	[thread overview]
Message-ID: <20130219220457.GA2126@tuxdriver.com> (raw)

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

Dave,

One last batch of stragglers intended for 3.9...

For the iwlwifi pull, Johannes says:

"I hadn't expected to ask you to pull iwlwifi-next again, but I have a
number of fixes most of which I'd also send in after rc1, so here it is.

The first commit is a merge error between mac80211-next and
iwlwifi-next; in addition I have fixes for P2P scanning and MVM driver
MAC (virtual interface) management from Ilan, a CT-kill (critical
temperature) fix from Eytan, and myself fixed three different little but
annoying bugs in the MVM driver.

The only ones I might not send for -rc1 are Emmanuel's debug patch, but
OTOH it should help greatly if there are any issues, and my own time
event debugging patch that I used to find the race condition but we
decided to keep it for the future."

For the mac80211 pull, Johannes says:

"Like iwlwifi-next, this would almost be suitable for rc1.

I have a fix for station management on non-TDLS drivers, a CAB queue
crash fix for mesh, a fix for an annoying (but harmless) warning, a
tracing fix and a documentation fix. Other than that, only a few mesh
cleanups."

Along with that is a fix for memory corruption in rtlwifi, an
orinoco_usb fix to avoid allocating a DMA buffer on the stack, an a
hostap fix to return -ENOMEM instead of -1 after a memory allocation
failure.  The remaining bits implement 802.11ac support for the mwifiex
driver -- I think that is still worth getting into 3.9.

Please let me know if there are problems!

Thanks,

John

---

The following changes since commit 303c07db487be59ae9fda10600ea65ca11c21497:

  ppp: set qdisc_tx_busylock to avoid LOCKDEP splat (2013-02-19 14:33:55 -0500)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next.git for-davem

for you to fetch changes up to 0b7164458fc184455239ea3676af1b362df1ce1d:

  Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem (2013-02-19 14:56:34 -0500)

----------------------------------------------------------------

Avinash Patil (1):
      mwifiex: fix empty TX ring check for PCIe8897 while unloading driver

Bob Copeland (1):
      mac80211: enable vif.cab_queue for mesh

Emmanuel Grumbach (1):
      iwlwifi: dvm: improve (again) the prints in reclaim path

Eytan Lifshitz (1):
      iwlwifi: dvm: fix delayed enter to CT-kill bug

Ilan Peer (3):
      iwlwifi: mvm: Set the scan type according to the vif type
      iwlwifi: mvm: Fix resource allocation for P2P Device
      iwlwifi: mvm: Reserve MAC id 0 for managed interfaces

Johannes Berg (10):
      mac80211: clean up mesh code
      cfg80211: add correct docbook entries
      mac80211: fix harmless station flush warning
      cfg80211: fix station change if TDLS isn't supported
      Merge remote-tracking branch 'wireless-next/master' into iwlwifi-next
      iwlwifi: mvm: fix merge error
      iwlwifi: mvm: program DTIM timings properly
      iwlwifi: mvm: fix GO powersave client manipulation
      iwlwifi: mvm: add debug statement to time event add
      iwlwifi: mvm: fix time event command handling race

John W. Linville (2):
      Merge branch 'for-john' of git://git.kernel.org/.../jberg/mac80211-next
      Merge branch 'master' of git://git.kernel.org/.../linville/wireless-next into for-davem

Jussi Kivilinna (1):
      rtlwifi: usb: allocate URB control message setup_packet and data buffer separately

Kumar Amit Mehta (2):
      net: wireless: orinoco: orinoco_usb.c: fix DMA buffers on stack
      net: wireless: hostap: hostap_ap.c: Return -ENOMEM instead of -1 for if kmalloc() fails.

Seth Forshee (1):
      mac80211: Fix incorrect use of STA_PR_FMT in trace points

Thomas Pedersen (3):
      mac80211: clean up mesh HT operation
      mac80211: stringify mesh peering events
      mac80211: don't spam mesh probe response messages

Yogesh Ashok Powar (2):
      mwifiex: coding style cleanup in bss parameter update
      mwifiex: add 802.11AC support

 Documentation/DocBook/80211.tmpl              |   4 +-
 drivers/net/wireless/hostap/hostap_ap.c       |   2 +-
 drivers/net/wireless/iwlwifi/dvm/commands.h   |   1 +
 drivers/net/wireless/iwlwifi/dvm/tt.c         |   2 +-
 drivers/net/wireless/iwlwifi/dvm/tx.c         |  51 +++--
 drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c   |  47 ++++-
 drivers/net/wireless/iwlwifi/mvm/mac80211.c   |  10 +-
 drivers/net/wireless/iwlwifi/mvm/rx.c         |   1 +
 drivers/net/wireless/iwlwifi/mvm/scan.c       |   7 +-
 drivers/net/wireless/iwlwifi/mvm/sta.c        |  14 +-
 drivers/net/wireless/iwlwifi/mvm/sta.h        |   6 +-
 drivers/net/wireless/iwlwifi/mvm/time-event.c |  10 +-
 drivers/net/wireless/mwifiex/11ac.c           | 261 ++++++++++++++++++++++++++
 drivers/net/wireless/mwifiex/11ac.h           |  26 +++
 drivers/net/wireless/mwifiex/11n.c            |   7 +-
 drivers/net/wireless/mwifiex/11n.h            |   4 +-
 drivers/net/wireless/mwifiex/Makefile         |   1 +
 drivers/net/wireless/mwifiex/cfg80211.c       | 177 ++++++++++++++---
 drivers/net/wireless/mwifiex/cfp.c            | 159 +++++++++++++++-
 drivers/net/wireless/mwifiex/cmdevt.c         |  19 ++
 drivers/net/wireless/mwifiex/fw.h             | 127 ++++++++++++-
 drivers/net/wireless/mwifiex/ioctl.h          |   4 +
 drivers/net/wireless/mwifiex/join.c           |   8 +
 drivers/net/wireless/mwifiex/main.h           |  23 ++-
 drivers/net/wireless/mwifiex/pcie.c           |   5 +-
 drivers/net/wireless/mwifiex/scan.c           |  63 ++++++-
 drivers/net/wireless/mwifiex/sta_cmd.c        |   2 +-
 drivers/net/wireless/mwifiex/sta_cmdresp.c    |   1 +
 drivers/net/wireless/mwifiex/sta_ioctl.c      |   5 +-
 drivers/net/wireless/orinoco/orinoco_usb.c    |  11 +-
 drivers/net/wireless/rtlwifi/usb.c            |  44 +++--
 net/mac80211/cfg.c                            |  14 +-
 net/mac80211/iface.c                          |   8 +-
 net/mac80211/main.c                           |   3 +-
 net/mac80211/mesh.c                           | 116 ++++++------
 net/mac80211/mesh.h                           | 105 +++++------
 net/mac80211/mesh_hwmp.c                      |  68 +++----
 net/mac80211/mesh_pathtbl.c                   |  89 ++++-----
 net/mac80211/mesh_plink.c                     | 134 ++++++-------
 net/mac80211/mesh_sync.c                      |  47 ++---
 net/mac80211/rx.c                             |  12 +-
 net/mac80211/sta_info.h                       |   2 -
 net/mac80211/trace.h                          |   6 +-
 net/mac80211/tx.c                             |  26 ++-
 net/wireless/nl80211.c                        |   9 -
 45 files changed, 1297 insertions(+), 444 deletions(-)
 create mode 100644 drivers/net/wireless/mwifiex/11ac.c
 create mode 100644 drivers/net/wireless/mwifiex/11ac.h

-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

             reply	other threads:[~2013-02-19 22:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-19 22:04 John W. Linville [this message]
2013-02-20  3:25 ` pull request: wireless-next 2013-02-19 David Miller

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=20130219220457.GA2126@tuxdriver.com \
    --to=linville@tuxdriver.com \
    --cc=davem@davemloft.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /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.