linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-01-08 14:57:13 to 2020-01-15 12:19:13 UTC [more...]

[PATCH 00/65] Simplify and improve the wfx driver
 2020-01-15 12:13 UTC  (56+ messages)
` [PATCH 07/65] staging: wfx: simplify hif_set_rcpi_rssi_threshold() usage
` [PATCH 08/65] staging: wfx: simplify hif_set_arp_ipv4_filter() usage
` [PATCH 13/65] staging: wfx: drop struct wfx_ht_info
` [PATCH 14/65] staging: wfx: drop wdev->output_power
` [PATCH 15/65] staging: wfx: simplify wfx_config()
` [PATCH 16/65] staging: wfx: rename wfx_upload_beacon()
` [PATCH 17/65] staging: wfx: simplify wfx_upload_ap_templates()
` [PATCH 18/65] staging: wfx: simplify wfx_update_beaconing()
` [PATCH 19/65] staging: wfx: fix __wfx_flush() when drop == false
` [PATCH 20/65] staging: wfx: simplify wfx_flush()
` [PATCH 21/65] staging: wfx: simplify update of DTIM period
` [PATCH 22/65] staging: wfx: drop wvif->dtim_period
` [PATCH 23/65] staging: wfx: drop wvif->enable_beacon
` [PATCH 24/65] staging: wfx: drop wvif->cqm_rssi_thold
` [PATCH 25/65] staging: wfx: drop wvif->setbssparams_done
` [PATCH 26/65] staging: wfx: drop wfx_set_cts_work()
` [PATCH 27/65] staging: wfx: SSID should be provided to hif_start() even if hidden
` [PATCH 28/65] staging: wfx: simplify hif_update_ie()
` [PATCH 29/65] staging: wfx: simplify hif_join()
` [PATCH 30/65] staging: wfx: simplify hif_set_association_mode()
` [PATCH 31/65] staging: wfx: simplify hif_set_uc_mc_bc_condition()
` [PATCH 32/65] staging: wfx: simplify hif_mib_uc_mc_bc_data_frame_condition
` [PATCH 33/65] staging: wfx: simplify hif_mib_set_data_filtering
` [PATCH 34/65] staging: wfx: simplify hif_set_data_filtering()
` [PATCH 35/65] staging: wfx: simplify hif_set_mac_addr_condition()
` [PATCH 36/65] staging: wfx: simplify hif_set_config_data_filter()
` [PATCH 37/65] staging: wfx: simplify wfx_set_mcast_filter()
` [PATCH 38/65] staging: wfx: simplify wfx_update_filtering()
` [PATCH 39/65] staging: wfx: simplify wfx_scan_complete()
` [PATCH 40/65] staging: wfx: update power-save per interface
` [PATCH 41/65] staging: wfx: with multiple vifs, force PS only if channels differs
` [PATCH 42/65] staging: wfx: do not update uapsd if not necessary
` [PATCH 43/65] staging: wfx: fix case where RTS threshold is 0
` [PATCH 44/65] staging: wfx: fix possible overflow on jiffies comparaison
` [PATCH 45/65] staging: wfx: remove handling of "early_data"
` [PATCH 46/65] staging: wfx: relocate "buffered" information to sta_priv
` [PATCH 47/65] staging: wfx: fix bss_loss
` [PATCH 48/65] staging: wfx: fix RCU usage
` [PATCH 49/65] staging: wfx: simplify wfx_set_tim_impl()
` [PATCH 50/65] staging: wfx: simplify the link-id allocation
` [PATCH 51/65] staging: wfx: check that no tx is pending before release sta
` [PATCH 52/65] staging: wfx: replace wfx_tx_get_tid() with ieee80211_get_tid()
` [PATCH 53/65] staging: wfx: pspoll_mask make no sense
` [PATCH 54/65] staging: wfx: sta and dtim
` [PATCH 55/65] staging: wfx: firmware never return PS status for stations
` [PATCH 56/65] staging: wfx: simplify wfx_suspend_resume_mc()
` [PATCH 57/65] staging: wfx: simplify handling of IEEE80211_TX_CTL_SEND_AFTER_DTIM
` [PATCH 58/65] staging: wfx: simplify wfx_ps_notify_sta()
` [PATCH 59/65] staging: wfx: ensure that packet_id is unique
` [PATCH 60/65] staging: wfx: remove unused do_probe
` [PATCH 61/65] staging: wfx: remove check for interface state
` [PATCH 62/65] staging: wfx: simplify hif_handle_tx_data()
` [PATCH 63/65] staging: wfx: simplify wfx_tx_queue_get_num_queued()
` [PATCH 64/65] staging: wfx: simplify hif_multi_tx_confirm()
` [PATCH 65/65] staging: wfx: update TODO

[PATCH 1/2] nl80211: add src and dst mac attributes
 2020-01-15 11:45 UTC  (4+ messages)
` [PATCH 2/2] nl80211: use src and dst addr attribute for control port tx/rx

[PATCH] mac80211: use more bits for ack_frame_id
 2020-01-15 11:42 UTC  (2+ messages)

[PATCH v3] ath9k: fix firmware bug in some Mikrotik R11e-2HPnD cards
 2020-01-15 11:01 UTC  (7+ messages)

[PATCH v3 00/18] rework mt76u layer to support new devices
 2020-01-15 10:58 UTC  (19+ messages)
` [PATCH v3 01/18] mt76: mt76u: check tx_status_data pointer in mt76u_tx_tasklet
` [PATCH v3 02/18] mt76: mt76u: add mt76u_process_rx_queue utility routine
` [PATCH v3 03/18] mt76: mt76u: add mt76_queue to mt76u_get_next_rx_entry signature
` [PATCH v3 04/18] mt76: mt76u: add mt76_queue to mt76u_refill_rx signature
` [PATCH v3 05/18] mt76: mt76u: use mt76_queue as mt76u_complete_rx context
` [PATCH v3 06/18] mt76: mt76u: add queue id parameter to mt76u_submit_rx_buffers
` [PATCH v3 07/18] mt76: mt76u: move mcu buffer allocation in mt76x02u drivers
` [PATCH v3 08/18] mt76: mt76u: introduce mt76u_free_rx_queue utility routine
` [PATCH v3 09/18] mt76: mt76u: stop/free all possible rx queues
` [PATCH v3 10/18] mt76: mt76u: add mt76u_alloc_rx_queue utility routine
` [PATCH v3 11/18] mt76: mt76u: add queue parameter to mt76u_rx_urb_alloc
` [PATCH v3 12/18] mt76: mt76u: resume all rx queue in mt76u_resume_rx
` [PATCH v3 13/18] mt76: mt76u: introduce mt76u_alloc_mcu_queue utility routine
` [PATCH v3 14/18] mt76: mt76u: add {read/write}_extended utility routines
` [PATCH v3 15/18] mt76: mt76u: take into account different queue mapping for 7663
` [PATCH v3 16/18] mt76: mt76u: introduce mt76u_skb_dma_info routine
` [PATCH v3 17/18] mt76: mt76u: add endpoint to mt76u_bulk_msg signature
` [PATCH v3 18/18] mt76: mt76u: introduce MT_DRV_RX_DMA_HDR flag

[PATCH] subsystem: Fix radar event during another phy CAC
 2020-01-15 10:28 UTC  (3+ messages)

pull-request: mac80211 2020-01-15
 2020-01-15 10:03 UTC 

[PATCH] ath11k: mask out vht beamforming if a fixed rate is set
 2020-01-15  9:25 UTC  (2+ messages)

[PATCH] ath11k: fix up some error paths
 2020-01-15  9:19 UTC  (2+ messages)

[PATCH -next] ath11k: add dependency for struct ath11k member debug
 2020-01-15  9:18 UTC  (2+ messages)

[PATCH 0/2] ath10k: Enable QDSS clock on sm8150
 2020-01-15  9:04 UTC  (5+ messages)
` [PATCH 1/2] ath10k: Add optional qdss clk

[PATCH] libertas: Fix two buffer overflows at parsing bss descriptor
 2020-01-15  6:21 UTC  (8+ messages)
  ` [PATCH 0/2] libertas: fix rates overflow code path in lbs_ibss_join_existing()
    ` [PATCH 1/2] libertas: don't exit from lbs_ibss_join_existing() with RCU read lock held
    ` [PATCH 2/2] libertas: make lbs_ibss_join_existing() return error code on rates overflow

[PATCH] rtlwifi: rtl8188ee: remove redundant assignment to variable cond
 2020-01-15  1:46 UTC  (2+ messages)

[PATCH][next] staging: wilc1000: remove redundant assignment to variable result
 2020-01-14 17:27 UTC 

Google Summer of Code 2020 - Project ideas page for the Linux Foundation online
 2020-01-14 17:09 UTC  (6+ messages)

[PATCH] mwifiex: fix unbalanced locking in mwifiex_process_country_ie()
 2020-01-14 14:56 UTC  (3+ messages)

[PATCH v2 00/18] rework mt76u layer to support new devices
 2020-01-14 14:39 UTC  (5+ messages)
` [PATCH v2 01/18] mt76: mt76u: check tx_status_data pointer in mt76u_tx_tasklet

Unreliable AP with rtl8188ee card
 2020-01-14 13:41 UTC 

[PATCH] mwifiex: drop most magic numbers from mwifiex_process_tdls_action_frame()
 2020-01-14 13:41 UTC  (3+ messages)

[PATCHv9 0/6] cfg80211/mac80211: Add support for TID specific configuration
 2020-01-14 12:31 UTC  (9+ messages)
` [PATCHv9 1/6] nl80211: Add NL command to support TID speicific configurations
` [PATCHv9 2/6] nl80211: Add support to configure TID specific retry configuration
` [PATCHv9 3/6] nl80211: Add support to configure TID specific AMPDU configuration
` [PATCHv9 4/6] nl80211: Add support to configure TID specific RTSCTS configuration
` [PATCHv9 5/6] nl80211: Add support to configure TID specific txrate configuration
` [PATCHv9 6/6] mac80211: Add api to support configuring TID specific configuration

[PATCH v2 0/2] Allow userspace to reset IBSS stations to fix aggregation issue
 2020-01-14  9:27 UTC  (3+ messages)

[PATCH v2 0/3] fix a STA PS bug and add PS support to mac80211_hwsim
 2020-01-14  8:00 UTC  (7+ messages)

[PATCH v3 0/2] more STA PS fixes and mac80211_hwsim PS support
 2020-01-14  5:59 UTC  (3+ messages)
` [PATCH v3 1/2] mac80211_hwsim: add power save support
` [PATCH v3 2/2] mac80211: add ieee80211_is_any_nullfunc()

[PATCH,v4] Revert "ath10k: fix DMA related firmware crashes on multiple devices"
 2020-01-14  4:35 UTC 

[PATCH 5.5] cfg80211: fix page refcount issue in A-MSDU decap
 2020-01-13 18:21 UTC 

[PATCH] cfg80211: check for set_wiphy_params
 2020-01-13 11:53 UTC 

[PATCH v2] MAINTAINERS: update for mwifiex driver maintainers
 2020-01-13 10:42 UTC 

[PATCH] MAINTAINERS: update for mwifiex driver maintainers
 2020-01-13 10:19 UTC  (3+ messages)
  ` [EXT] "

BUG: unable to handle kernel NULL pointer dereference in cfg80211_wext_siwrts
 2020-01-13  9:31 UTC  (5+ messages)

[PATCH][next] ath11k: avoid null pointer dereference when pointer band is null
 2020-01-13  8:47 UTC  (3+ messages)

[PATCH] ath9k: Fix possible data races in ath_set_channel()
 2020-01-13  8:27 UTC  (3+ messages)

[rtw88] purge skb(s) not reported by firmware
 2020-01-13  7:49 UTC  (2+ messages)

Investment opportunity
 2020-01-11 23:46 UTC 

WARNING: bad unlock balance in __dev_queue_xmit
 2020-01-11 23:38 UTC  (3+ messages)
  `  "

[PATCH] b43: Fix possible a data race in b43_op_tx()
 2020-01-11 17:15 UTC  (2+ messages)

pull-request: iwlwifi-next 2020-01-11
 2020-01-11  9:51 UTC 

pull-request: iwlwifi-fixes for v5.5 2020-01-11
 2020-01-11  9:40 UTC 

[PATCH][next] ath11k: avoid null pointer dereference when pointer band is null
 2020-01-11  9:08 UTC 

WARNING in set_precision (2)
 2020-01-10 18:44 UTC 

[PATCH] iwlwifi: fix build warnings with format string
 2020-01-10 13:16 UTC 

[PATCH 1/1] ath9k: fix firmware bug in some of Mikrotik R11e-2HPnD cards
 2020-01-10 11:38 UTC  (4+ messages)

[PATCH v4 0/2] start recovery process when payload length overflow for sdio
 2020-01-10 10:29 UTC  (4+ messages)
` [PATCH v4 1/2] ath10k: add refcount for ath10k_core_restart

[RESEND] ath9k: fix firmware bug in some of Mikrotik R11e-2HPnD cards
 2020-01-10  8:30 UTC  (2+ messages)

[PATCH AUTOSEL 5.4 008/187] mwifiex: fix possible heap overflow in mwifiex_process_country_ie()
 2020-01-09 17:33 UTC  (4+ messages)

MAINTAINERS: Marvell adresses might need update
 2020-01-09 15:47 UTC 

Singapore Citizen Mr. Teo En Ming's Refugee Seeking Attempts as at 9 Jan 2020 Thursday
 2020-01-09 15:36 UTC 

[PATCH 0/5] qtnfmac: minor features and fixes
 2020-01-09 13:17 UTC  (6+ messages)
` [PATCH 1/5] qtnfmac: cleanup slave_radar access function
` [PATCH 2/5] qtnfmac: add module param to configure DFS offload
` [PATCH 3/5] qtnfmac: control qtnfmac wireless interfaces bridging
` [PATCH 4/5] qtnfmac: add support for STA HE rates
` [PATCH 5/5] qtnfmac: add support for TWT responder and spatial reuse

[PATCH] mt76: mt7615: remove leftover routine declaration
 2020-01-09 13:26 UTC 

[PATCH v4] ath11k: Add missing pdev rx rate stats
 2020-01-09 11:48 UTC 

[PATCH] rtw88: use shorter delay time to poll PS state
 2020-01-09 10:34 UTC  (2+ messages)

[PATCH] rtw88: fix potential NULL skb access in TX ISR
 2020-01-09 10:26 UTC  (4+ messages)

[PATCH v2 0/9] iomap: Constify ioreadX() iomem argument
 2020-01-09  6:04 UTC  (12+ messages)
` [PATCH v2 1/9] iomap: Constify ioreadX() iomem argument (as in generic implementation)
` [PATCH v2 2/9] net: wireless: rtl818x: "
` [PATCH v2 3/9] ntb: intel: "
` [PATCH v2 4/9] virtio: pci: "
` [PATCH v2 5/9] arc: "
` [PATCH v2 6/9] drm/mgag200: "
` [PATCH v2 7/9] drm/nouveau: "
` [PATCH v2 8/9] media: fsl-viu: "
` [PATCH v2 9/9] net: wireless: ath5k: "

Does ath10k firmware need to do congestion control?
 2020-01-08 17:54 UTC 

[PATCH 5.5 1/2] cfg80211: fix memory leak in nl80211_probe_mesh_link
 2020-01-08 17:06 UTC  (2+ messages)
` [PATCH 5.5 2/2] cfg80211: fix memory leak in cfg80211_cqm_rssi_update

[PATCH] brcmfmac: sdio: Fix OOB interrupt initialization on brcm43362
 2020-01-08 14:57 UTC  (9+ messages)


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