linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] mwifiex updates for 3.12
@ 2013-07-23  2:17 Bing Zhao
  2013-07-23  2:17 ` [PATCH 01/21] mwifiex: remove stop_net_dev_queue operation in AP forwarding Bing Zhao
                   ` (20 more replies)
  0 siblings, 21 replies; 27+ messages in thread
From: Bing Zhao @ 2013-07-23  2:17 UTC (permalink / raw)
  To: linux-wireless
  Cc: John W. Linville, Amitkumar Karwar, Avinash Patil,
	Yogesh Ashok Powar, Nishant Sarmukadam, Frank Huang, Bing Zhao

This series includes error case handling, bridged packet handling
in AP mode, p2p updates, random cleanups, etc.

Amitkumar Karwar (11):
  mwifiex: add PCIe shutdown handler to avoid system hang on reboot
  mwifiex: move del_timer_sync(scan_delay_timer) call to fix memleak
  mwifiex: remove unnecessary del_timer(cmd_timer)
  mwifiex: move if_ops.cleanup_if() call
  mwifiex: add unregister_dev handler for usb interface
  mwifiex: reduce firmware poll retries
  mwifiex: replace mdelay with msleep
  mwifiex: correction in mwifiex_check_fw_status() return status
  mwifiex: handle driver initialization error paths
  mwifiex: code rearrangement in sdio.c
  mwifiex: remove duplicate structure host_cmd_tlv

Avinash Patil (5):
  mwifiex: rename pkt_count to ba_pkt_count in mwifiex_ra_list_tbl
    struct
  mwifiex: maintain outstanding packet count for RA list instead of
    packet size
  mwifiex: delete AP TX queues when bridged packets reach threshold
  mwifiex: correct max IE length check for WPS IE
  mwifiex: modify mwifiex_ap_sta_limits to advertise support for P2P

Huawei Yang (2):
  mwifiex: remove stop_net_dev_queue operation in AP forwarding
  mwifiex: add tx info to skb when forming mgmt frame

Stone Piao (3):
  mwifiex: discard deauth and disassoc event during WPS session
  mwifiex: skip registering mgmt frame that has already registered
  mwifiex: support to send deauth for P2P client

 drivers/net/wireless/mwifiex/11n_aggr.c  |   4 +-
 drivers/net/wireless/mwifiex/cfg80211.c  |  25 +++-
 drivers/net/wireless/mwifiex/decl.h      |   3 +-
 drivers/net/wireless/mwifiex/fw.h        |  44 +++----
 drivers/net/wireless/mwifiex/ie.c        |   2 +-
 drivers/net/wireless/mwifiex/init.c      |  14 +-
 drivers/net/wireless/mwifiex/join.c      |   1 +
 drivers/net/wireless/mwifiex/main.c      |  87 +++++++++----
 drivers/net/wireless/mwifiex/main.h      |   6 +-
 drivers/net/wireless/mwifiex/pcie.c      |  13 +-
 drivers/net/wireless/mwifiex/sdio.c      | 213 +++++++++++++++----------------
 drivers/net/wireless/mwifiex/sta_cmd.c   |   5 +-
 drivers/net/wireless/mwifiex/sta_event.c |  10 ++
 drivers/net/wireless/mwifiex/sta_ioctl.c |  11 +-
 drivers/net/wireless/mwifiex/uap_cmd.c   | 130 ++++++++++---------
 drivers/net/wireless/mwifiex/uap_txrx.c  |  70 +++++++++-
 drivers/net/wireless/mwifiex/usb.c       |   8 ++
 drivers/net/wireless/mwifiex/wmm.c       |  16 +--
 18 files changed, 390 insertions(+), 272 deletions(-)

-- 
1.8.2.3


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

end of thread, other threads:[~2013-07-26  4:25 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-23  2:17 [PATCH 00/21] mwifiex updates for 3.12 Bing Zhao
2013-07-23  2:17 ` [PATCH 01/21] mwifiex: remove stop_net_dev_queue operation in AP forwarding Bing Zhao
2013-07-23  2:17 ` [PATCH 02/21] mwifiex: rename pkt_count to ba_pkt_count in mwifiex_ra_list_tbl struct Bing Zhao
2013-07-23  2:17 ` [PATCH 03/21] mwifiex: maintain outstanding packet count for RA list instead of packet size Bing Zhao
2013-07-23  2:17 ` [PATCH 04/21] mwifiex: delete AP TX queues when bridged packets reach threshold Bing Zhao
2013-07-23  2:17 ` [PATCH 05/21] mwifiex: add tx info to skb when forming mgmt frame Bing Zhao
2013-07-23  2:17 ` [PATCH 06/21] mwifiex: discard deauth and disassoc event during WPS session Bing Zhao
2013-07-23  2:17 ` [PATCH 07/21] mwifiex: skip registering mgmt frame that has already registered Bing Zhao
2013-07-23  2:17 ` [PATCH 08/21] mwifiex: support to send deauth for P2P client Bing Zhao
2013-07-23  2:17 ` [PATCH 09/21] mwifiex: correct max IE length check for WPS IE Bing Zhao
2013-07-23  2:17 ` [PATCH 10/21] mwifiex: add PCIe shutdown handler to avoid system hang on reboot Bing Zhao
2013-07-23  2:17 ` [PATCH 11/21] mwifiex: move del_timer_sync(scan_delay_timer) call to fix memleak Bing Zhao
2013-07-23  2:17 ` [PATCH 12/21] mwifiex: remove unnecessary del_timer(cmd_timer) Bing Zhao
2013-07-23  2:17 ` [PATCH 13/21] mwifiex: move if_ops.cleanup_if() call Bing Zhao
2013-07-23  2:17 ` [PATCH 14/21] mwifiex: add unregister_dev handler for usb interface Bing Zhao
2013-07-23  2:17 ` [PATCH 15/21] mwifiex: reduce firmware poll retries Bing Zhao
2013-07-23  2:17 ` [PATCH 16/21] mwifiex: replace mdelay with msleep Bing Zhao
2013-07-23  2:17 ` [PATCH 17/21] mwifiex: correction in mwifiex_check_fw_status() return status Bing Zhao
2013-07-23  2:17 ` [PATCH 18/21] mwifiex: handle driver initialization error paths Bing Zhao
2013-07-24 15:16   ` John W. Linville
2013-07-24 18:48     ` Bing Zhao
2013-07-24 19:02       ` John W. Linville
2013-07-26  4:25         ` Bing Zhao
2013-07-23  2:17 ` [PATCH 19/21] mwifiex: code rearrangement in sdio.c Bing Zhao
2013-07-24 15:17   ` John W. Linville
2013-07-23  2:17 ` [PATCH 20/21] mwifiex: remove duplicate structure host_cmd_tlv Bing Zhao
2013-07-23  2:17 ` [PATCH 21/21] mwifiex: modify mwifiex_ap_sta_limits to advertise support for P2P Bing Zhao

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).