driverdev-devel.linuxdriverproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/19] staging: wfx: various fixes
@ 2020-05-15  8:33 Jerome Pouiller
  2020-05-15  8:33 ` [PATCH 01/19] staging: wfx: fix warning when unregister a frozen device Jerome Pouiller
                   ` (18 more replies)
  0 siblings, 19 replies; 24+ messages in thread
From: Jerome Pouiller @ 2020-05-15  8:33 UTC (permalink / raw)
  To: devel, linux-wireless
  Cc: netdev, linux-kernel, Greg Kroah-Hartman, David S . Miller, Kalle Valo

From: Jérôme Pouiller <jerome.pouiller@silabs.com>

Hello,

This series contains various changes. The most important patches are the
13 and 14 since they fix two functional defects. The other patches fix
runtime warnings (1, 17, 18, 19), improve robustness (3, 4, 5, 7, 10, 16)
and do some cosmetics improvements (2, 6, 8, 9, 11, 12, 15).

This series have to be applied on top of patch sent by Dan: "staging: wfx:
unlock on error path". Would I had include this patch in this PR?

Jérôme Pouiller (19):
  staging: wfx: fix warning when unregister a frozen device
  staging: wfx: apply 80-columns rule to strings
  staging: wfx: check pointers returned by allocations
  staging: wfx: fix value of scan timeout
  staging: wfx: fix coherency of hif_scan() prototype
  staging: wfx: fix indentation
  staging: wfx: fix status of dropped frames
  staging: wfx: split out wfx_tx_fill_rates() from wfx_tx_confirm_cb()
  staging: wfx: call wfx_tx_update_sta() before to destroy tx_priv
  staging: wfx: fix potential use-after-free
  staging: wfx: rename wfx_do_unjoin() into wfx_reset()
  staging: wfx: merge wfx_stop_ap() with wfx_reset()
  staging: wfx: fix potential dead lock between join and scan
  staging: wfx: fix PS parameters when multiple vif are in use
  staging: wfx: drop unnecessary filter configuration when disabling
    filter
  staging: wfx: fix error reporting in wfx_start_ap()
  staging: wfx: remove false-positive WARN()
  staging: wfx: trace acknowledges not linked to any stations
  staging: wfx: remove false positive warning

 drivers/staging/wfx/bus_sdio.c   |   3 +-
 drivers/staging/wfx/data_tx.c    | 110 +++++++++++++++++--------------
 drivers/staging/wfx/fwio.c       |   8 +--
 drivers/staging/wfx/hif_tx.c     |  57 ++++++++++++++--
 drivers/staging/wfx/hif_tx.h     |   2 +-
 drivers/staging/wfx/hif_tx_mib.c |   2 +
 drivers/staging/wfx/main.c       |  17 +++--
 drivers/staging/wfx/queue.c      |   7 --
 drivers/staging/wfx/scan.c       |  11 +++-
 drivers/staging/wfx/sta.c        |  69 ++++++++++---------
 drivers/staging/wfx/sta.h        |   1 +
 drivers/staging/wfx/wfx.h        |   2 +
 12 files changed, 182 insertions(+), 107 deletions(-)

-- 
2.26.2

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

end of thread, other threads:[~2020-05-15 15:09 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-15  8:33 [PATCH 00/19] staging: wfx: various fixes Jerome Pouiller
2020-05-15  8:33 ` [PATCH 01/19] staging: wfx: fix warning when unregister a frozen device Jerome Pouiller
2020-05-15  8:33 ` [PATCH 02/19] staging: wfx: apply 80-columns rule to strings Jerome Pouiller
2020-05-15  8:33 ` [PATCH 03/19] staging: wfx: check pointers returned by allocations Jerome Pouiller
2020-05-15  8:33 ` [PATCH 04/19] staging: wfx: fix value of scan timeout Jerome Pouiller
2020-05-15  8:33 ` [PATCH 05/19] staging: wfx: fix coherency of hif_scan() prototype Jerome Pouiller
2020-05-15 13:53   ` Greg Kroah-Hartman
2020-05-15 14:01     ` Greg Kroah-Hartman
2020-05-15 15:03     ` Jérôme Pouiller
2020-05-15 15:09       ` Greg Kroah-Hartman
2020-05-15  8:33 ` [PATCH 06/19] staging: wfx: fix indentation Jerome Pouiller
2020-05-15  8:33 ` [PATCH 07/19] staging: wfx: fix status of dropped frames Jerome Pouiller
2020-05-15  8:33 ` [PATCH 08/19] staging: wfx: split out wfx_tx_fill_rates() from wfx_tx_confirm_cb() Jerome Pouiller
2020-05-15  8:33 ` [PATCH 09/19] staging: wfx: call wfx_tx_update_sta() before to destroy tx_priv Jerome Pouiller
2020-05-15  8:33 ` [PATCH 10/19] staging: wfx: fix potential use-after-free Jerome Pouiller
2020-05-15  8:33 ` [PATCH 11/19] staging: wfx: rename wfx_do_unjoin() into wfx_reset() Jerome Pouiller
2020-05-15  8:33 ` [PATCH 12/19] staging: wfx: merge wfx_stop_ap() with wfx_reset() Jerome Pouiller
2020-05-15  8:33 ` [PATCH 13/19] staging: wfx: fix potential dead lock between join and scan Jerome Pouiller
2020-05-15  8:33 ` [PATCH 14/19] staging: wfx: fix PS parameters when multiple vif are in use Jerome Pouiller
2020-05-15  8:33 ` [PATCH 15/19] staging: wfx: drop unnecessary filter configuration when disabling filter Jerome Pouiller
2020-05-15  8:33 ` [PATCH 16/19] staging: wfx: fix error reporting in wfx_start_ap() Jerome Pouiller
2020-05-15  8:33 ` [PATCH 17/19] staging: wfx: remove false-positive WARN() Jerome Pouiller
2020-05-15  8:33 ` [PATCH 18/19] staging: wfx: trace acknowledges not linked to any stations Jerome Pouiller
2020-05-15  8:33 ` [PATCH 19/19] staging: wfx: remove false positive warning Jerome Pouiller

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