1. 27 Apr, 2020 3 commits
    • Wen Gong's avatar
      ath10k: add statistics of tx retries and tx failed when tx complete disable · 59a022cc
      Wen Gong authored
      When tx complete is disabled, all tx status will be set with status
      HTT_TX_COMPL_STATE_ACK and indicate to mac80211 by ieee80211_tx_status,
      then it does not have the statistics for retries and failed packets.
      count of tx retries and tx failed of command "iw wlan0 station dump"
      are both 0. If tx complete is not disabled, then firmware report the
      tx status and ath10k indicate the status to mac80211, then mac80211
      save the statistics and command "iw wlan0 station dump" show them.
      
      for example:
      localhost ~ # iw dev wlan0 station dump
      Station 3c:28:6d:96:fd:69 (on wlan0)
      	inactive time:	5 ms
      	rx bytes:	1325012
      	rx packets:	6477
      	tx bytes:	85264
      	tx packets:	518
      	tx retries:	0
      	tx failed:	0
      
      This patch only effect chips with tx complete disabled, e.g. SDIO.
      
      with this patch, output of command "iw dev wlan0 station dump":
      Station c4:04:15:5d:97:22 (on wlan0)
              inactive time:  608 ms
              rx bytes:       180366
              rx packets:     991
              tx bytes:       98765577
              tx packets:     64624
              tx retries:     14682
              tx failed:      47086
      
      Tested with QCA6174 SDIO with firmware WLAN.RMH.4.4.1-00042.
      Signed-off-by: default avatarWen Gong <wgong@codeaurora.org>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200423024134.10601-1-wgong@codeaurora.org
      59a022cc
    • Wen Gong's avatar
      ath10k: enable rx duration report default for wmi tlv · 4913e675
      Wen Gong authored
      When run command "iw dev wlan0 station dump", the rx duration is 0.
      When firmware indicate WMI_UPDATE_STATS_EVENTID, extended flag of
      statsis not set by default, so firmware do not report rx duration.
      
      one sample:
      localhost # iw wlan0 station dump
      Station c4:04:15:5d:97:22 (on wlan0)
              inactive time:  48 ms
              rx bytes:       21670
              rx packets:     147
              tx bytes:       11529
              tx packets:     100
              tx retries:     88
              tx failed:      36
              beacon loss:    1
              beacon rx:      31
              rx drop misc:   47
              signal:         -72 [-74, -75] dBm
              signal avg:     -71 [-74, -75] dBm
              beacon signal avg:      -71 dBm
              tx bitrate:     54.0 MBit/s MCS 3 40MHz
              rx bitrate:     1.0 MBit/s
      	rx duration:    0 us
      
      This patch enable firmware's extened flag of stats by setting flag
      WMI_TLV_STAT_PEER_EXTD of ar->fw_stats_req_mask which is set in
      ath10k_core_init_firmware_features via WMI_REQUEST_STATS_CMDID.
      
      After apply this patch, rx duration show value with the command:
      Station c4:04:15:5d:97:22 (on wlan0)
              inactive time:  883 ms
              rx bytes:       44289
              rx packets:     265
              tx bytes:       10838
              tx packets:     93
              tx retries:     899
              tx failed:      103
              beacon loss:    0
              beacon rx:      78
              rx drop misc:   46
              signal:         -71 [-74, -76] dBm
              signal avg:     -70 [-74, -76] dBm
              beacon signal avg:      -70 dBm
              tx bitrate:     54.0 MBit/s MCS 3 40MHz
              rx bitrate:     1.0 MBit/s
              rx duration:    358004 us
      
      This patch do not have side effect for all chips, because function
      ath10k_debug_fw_stats_request is already exported to debugfs
      "fw_stats" and WMI_REQUEST_STATS_CMDID is safely sent after condition
      checked by ath10k_peer_stats_enabled in ath10k_sta_statistics.
      
      Tested with QCA6174 SDIO with firmware WLAN.RMH.4.4.1-00042.
      Signed-off-by: default avatarWen Gong <wgong@codeaurora.org>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200423022758.5365-1-wgong@codeaurora.org
      4913e675
    • Karthikeyan Periyasamy's avatar
      ath11k: fix reo flush send · 5cb899dd
      Karthikeyan Periyasamy authored
      we are sending the reo flush command for the deleted peer
      tid after the ageout period reaches 1 second. This handling
      causes reo ring get full when more than 128 clients are
      disconnected continuously. so added the count for flush list
      and reo flush command is triggered after the list count reaches
      the threshold value, it is configured as 64 (half of the reo ring).
      This will avoid the situation where reo ring get full.
      Signed-off-by: default avatarKarthikeyan Periyasamy <periyasa@codeaurora.org>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/1587552378-4884-1-git-send-email-periyasa@codeaurora.org
      5cb899dd
  2. 23 Apr, 2020 2 commits
  3. 22 Apr, 2020 5 commits
    • Wen Gong's avatar
      ath10k: add flush tx packets for SDIO chip · dd7fc554
      Wen Gong authored
      When station connected to AP, and run TX traffic such as TCP/UDP, and
      system enter suspend state, then mac80211 call ath10k_flush with set
      drop flag, recently it only send wmi peer flush to firmware and
      firmware will flush all pending TX packets, for PCIe, firmware will
      indicate the TX packets status to ath10k, and then ath10k indicate to
      mac80211 TX complete with the status, then all the packets has been
      flushed at this moment. For SDIO chip, it is different, its TX
      complete indication is disabled by default, and it has a tx queue in
      ath10k, and its tx credit control is enabled, total tx credit is 96,
      when its credit is not sufficient, then the packets will buffered in
      the tx queue of ath10k, max packets is TARGET_TLV_NUM_MSDU_DESC_HL
      which is 1024, for SDIO, when mac80211 call ath10k_flush with set drop
      flag, maybe it have pending packets in tx queue of ath10k, and if it
      does not have sufficient tx credit, the packets will stay in queue
      untill tx credit report from firmware, if it is a noisy environment,
      tx speed is low and the tx credit report from firmware will delay more
      time, then the num_pending_tx will remain > 0 untill all packets send
      to firmware. After the 1st ath10k_flush, mac80211 will call the 2nd
      ath10k_flush without set drop flag immediately, then it will call to
      ath10k_mac_wait_tx_complete, and it wait untill num_pending_tx become
      to 0, in noisy environment, it is esay to wait about near 5 seconds,
      then it cause the suspend take long time.
      
      1st and 2nd callstack of ath10k_flush
      [  303.740427] ath10k_sdio mmc1:0001:1: ath10k_flush drop:1, pending:0-0
      [  303.740495] ------------[ cut here ]------------
      [  303.740739] WARNING: CPU: 1 PID: 3921 at /mnt/host/source/src/third_party/kernel/v4.19/drivers/net/wireless/ath/ath10k/mac.c:7025 ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.740757] Modules linked in: bridge stp llc ath10k_sdio ath10k_core rfcomm uinput cros_ec_rpmsg mtk_seninf mtk_cam_isp mtk_vcodec_enc mtk_fd mtk_vcodec_dec mtk_vcodec_common mtk_dip mtk_mdp3 videobuf2_dma_contig videobuf2_memops v4l2_mem2mem videobuf2_v4l2 videobuf2_common hid_google_hammer hci_uart btqca bluetooth dw9768 ov8856 ecdh_generic ov02a10 v4l2_fwnode mtk_scp mtk_rpmsg rpmsg_core mtk_scp_ipi ipt_MASQUERADE fuse iio_trig_sysfs cros_ec_sensors_ring cros_ec_sensors_sync cros_ec_light_prox cros_ec_sensors industrialio_triggered_buffer
      [  303.740914]  kfifo_buf cros_ec_activity cros_ec_sensors_core lzo_rle lzo_compress ath mac80211 zram cfg80211 joydev [last unloaded: ath10k_core]
      [  303.741009] CPU: 1 PID: 3921 Comm: kworker/u16:10 Tainted: G        W         4.19.95 #2
      [  303.741027] Hardware name: MediaTek krane sku176 board (DT)
      [  303.741061] Workqueue: events_unbound async_run_entry_fn
      [  303.741086] pstate: 60000005 (nZCv daif -PAN -UAO)
      [  303.741166] pc : ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.741244] lr : ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.741260] sp : ffffffdf080e77a0
      [  303.741276] x29: ffffffdf080e77a0 x28: ffffffdef3730040
      [  303.741300] x27: ffffff907c2240a0 x26: ffffffde6ff39afc
      [  303.741321] x25: ffffffdef3730040 x24: ffffff907bf61018
      [  303.741343] x23: ffffff907c2240a0 x22: ffffffde6ff39a50
      [  303.741364] x21: 0000000000000001 x20: ffffffde6ff39a50
      [  303.741385] x19: ffffffde6bac2420 x18: 0000000000017200
      [  303.741407] x17: ffffff907c24a000 x16: 0000000000000037
      [  303.741428] x15: ffffff907b49a568 x14: ffffff907cf332c1
      [  303.741476] x13: 00000000000922e4 x12: 0000000000000000
      [  303.741497] x11: 0000000000000001 x10: 0000000000000007
      [  303.741518] x9 : f2256b8c1de4bc00 x8 : f2256b8c1de4bc00
      [  303.741539] x7 : ffffff907ab5e764 x6 : 0000000000000000
      [  303.741560] x5 : 0000000000000080 x4 : 0000000000000001
      [  303.741582] x3 : ffffffdf080e74a8 x2 : ffffff907aa91244
      [  303.741603] x1 : ffffffdf080e74a8 x0 : 0000000000000024
      [  303.741624] Call trace:
      [  303.741701]  ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.741941]  __ieee80211_flush_queues+0x1dc/0x358 [mac80211]
      [  303.742098]  ieee80211_flush_queues+0x34/0x44 [mac80211]
      [  303.742253]  ieee80211_set_disassoc+0xc0/0x5ec [mac80211]
      [  303.742399]  ieee80211_mgd_deauth+0x720/0x7d4 [mac80211]
      [  303.742535]  ieee80211_deauth+0x24/0x30 [mac80211]
      [  303.742720]  cfg80211_mlme_deauth+0x250/0x3bc [cfg80211]
      [  303.742849]  cfg80211_mlme_down+0x90/0xd0 [cfg80211]
      [  303.742971]  cfg80211_disconnect+0x340/0x3a0 [cfg80211]
      [  303.743087]  __cfg80211_leave+0xe4/0x17c [cfg80211]
      [  303.743203]  cfg80211_leave+0x38/0x50 [cfg80211]
      [  303.743319]  wiphy_suspend+0x84/0x5bc [cfg80211]
      [  303.743335]  dpm_run_callback+0x170/0x304
      [  303.743346]  __device_suspend+0x2dc/0x3e8
      [  303.743356]  async_suspend+0x2c/0xb0
      [  303.743370]  async_run_entry_fn+0x48/0xf8
      [  303.743383]  process_one_work+0x304/0x604
      [  303.743394]  worker_thread+0x248/0x3f4
      [  303.743403]  kthread+0x120/0x130
      [  303.743416]  ret_from_fork+0x10/0x18
      
      [  303.743812] ath10k_sdio mmc1:0001:1: ath10k_flush drop:0, pending:0-0
      [  303.743858] ------------[ cut here ]------------
      [  303.744057] WARNING: CPU: 1 PID: 3921 at /mnt/host/source/src/third_party/kernel/v4.19/drivers/net/wireless/ath/ath10k/mac.c:7025 ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.744075] Modules linked in: bridge stp llc ath10k_sdio ath10k_core rfcomm uinput cros_ec_rpmsg mtk_seninf mtk_cam_isp mtk_vcodec_enc mtk_fd mtk_vcodec_dec mtk_vcodec_common mtk_dip mtk_mdp3 videobuf2_dma_contig videobuf2_memops v4l2_mem2mem videobuf2_v4l2 videobuf2_common hid_google_hammer hci_uart btqca bluetooth dw9768 ov8856 ecdh_generic ov02a10 v4l2_fwnode mtk_scp mtk_rpmsg rpmsg_core mtk_scp_ipi ipt_MASQUERADE fuse iio_trig_sysfs cros_ec_sensors_ring cros_ec_sensors_sync cros_ec_light_prox cros_ec_sensors industrialio_triggered_buffer kfifo_buf cros_ec_activity cros_ec_sensors_core lzo_rle lzo_compress ath mac80211 zram cfg80211 joydev [last unloaded: ath10k_core]
      [  303.744256] CPU: 1 PID: 3921 Comm: kworker/u16:10 Tainted: G        W         4.19.95 #2
      [  303.744273] Hardware name: MediaTek krane sku176 board (DT)
      [  303.744301] Workqueue: events_unbound async_run_entry_fn
      [  303.744325] pstate: 60000005 (nZCv daif -PAN -UAO)
      [  303.744403] pc : ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.744480] lr : ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.744496] sp : ffffffdf080e77a0
      [  303.744512] x29: ffffffdf080e77a0 x28: ffffffdef3730040
      [  303.744534] x27: ffffff907c2240a0 x26: ffffffde6ff39afc
      [  303.744556] x25: ffffffdef3730040 x24: ffffff907bf61018
      [  303.744577] x23: ffffff907c2240a0 x22: ffffffde6ff39a50
      [  303.744598] x21: 0000000000000000 x20: ffffffde6ff39a50
      [  303.744620] x19: ffffffde6bac2420 x18: 000000000001831c
      [  303.744641] x17: ffffff907c24a000 x16: 0000000000000037
      [  303.744662] x15: ffffff907b49a568 x14: ffffff907cf332c1
      [  303.744683] x13: 00000000000922ea x12: 0000000000000000
      [  303.744704] x11: 0000000000000001 x10: 0000000000000007
      [  303.744747] x9 : f2256b8c1de4bc00 x8 : f2256b8c1de4bc00
      [  303.744768] x7 : ffffff907ab5e764 x6 : 0000000000000000
      [  303.744789] x5 : 0000000000000080 x4 : 0000000000000001
      [  303.744810] x3 : ffffffdf080e74a8 x2 : ffffff907aa91244
      [  303.744831] x1 : ffffffdf080e74a8 x0 : 0000000000000024
      [  303.744853] Call trace:
      [  303.744929]  ath10k_flush+0x54/0x104 [ath10k_core]
      [  303.745098]  __ieee80211_flush_queues+0x1dc/0x358 [mac80211]
      [  303.745277]  ieee80211_flush_queues+0x34/0x44 [mac80211]
      [  303.745424]  ieee80211_set_disassoc+0x108/0x5ec [mac80211]
      [  303.745569]  ieee80211_mgd_deauth+0x720/0x7d4 [mac80211]
      [  303.745706]  ieee80211_deauth+0x24/0x30 [mac80211]
      [  303.745853]  cfg80211_mlme_deauth+0x250/0x3bc [cfg80211]
      [  303.745979]  cfg80211_mlme_down+0x90/0xd0 [cfg80211]
      [  303.746103]  cfg80211_disconnect+0x340/0x3a0 [cfg80211]
      [  303.746219]  __cfg80211_leave+0xe4/0x17c [cfg80211]
      [  303.746335]  cfg80211_leave+0x38/0x50 [cfg80211]
      [  303.746452]  wiphy_suspend+0x84/0x5bc [cfg80211]
      [  303.746467]  dpm_run_callback+0x170/0x304
      [  303.746477]  __device_suspend+0x2dc/0x3e8
      [  303.746487]  async_suspend+0x2c/0xb0
      [  303.746498]  async_run_entry_fn+0x48/0xf8
      [  303.746510]  process_one_work+0x304/0x604
      [  303.746521]  worker_thread+0x248/0x3f4
      [  303.746530]  kthread+0x120/0x130
      [  303.746542]  ret_from_fork+0x10/0x18
      
      one sample's debugging log: it wait 3190 ms(5000 - 1810).
      
      1st ath10k_flush, it has 120 packets in tx queue of ath10k:
      <...>-1513  [000] .... 25374.786005: ath10k_log_err: ath10k_sdio mmc1:0001:1 ath10k_flush drop:1, pending:120-0
      <...>-1513  [000] ...1 25374.788375: ath10k_log_warn: ath10k_sdio mmc1:0001:1 ath10k_htt_tx_mgmt_inc_pending htt->num_pending_mgmt_tx:0
      <...>-1500  [001] .... 25374.790143: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:121
      
      2st ath10k_flush, it has 121 packets in tx queue of ath10k:
      <...>-1513  [000] .... 25374.790571: ath10k_log_err: ath10k_sdio mmc1:0001:1 ath10k_flush drop:0, pending:121-0
      <...>-1513  [000] .... 25374.791990: ath10k_log_err: ath10k_sdio mmc1:0001:1 ath10k_mac_wait_tx_complete state:1 pending:121-0
      <...>-1508  [001] .... 25374.792696: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit update: delta:46
      <...>-1508  [001] .... 25374.792700: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit total:46
      <...>-1508  [001] .... 25374.792729: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:121
      <...>-1508  [001] .... 25374.792937: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx status:0, eid:1, req count:88, count:32, len:49792
      <...>-1508  [001] .... 25374.793031: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx status:0, eid:1, req count:75, count:14, len:21784
      kworker/u16:0-25773 [003] .... 25374.793701: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx complete, eid:1, pending complete count:46
      <...>-1881  [000] .... 25375.073178: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit update: delta:24
      <...>-1881  [000] .... 25375.073182: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit total:24
      <...>-1881  [000] .... 25375.073429: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:75
      <...>-1879  [001] .... 25375.074090: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx complete, eid:1, pending complete count:24
      <...>-1881  [000] .... 25375.074123: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx status:0, eid:1, req count:51, count:24, len:37344
      <...>-1879  [001] .... 25375.270126: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit update: delta:26
      <...>-1879  [001] .... 25375.270130: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit total:26
      <...>-1488  [000] .... 25375.270174: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:51
      <...>-1488  [000] .... 25375.270529: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx status:0, eid:1, req count:25, count:26, len:40456
      <...>-1879  [001] .... 25375.270693: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx complete, eid:1, pending complete count:26
      <...>-1488  [001] .... 25377.775885: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit update: delta:12
      <...>-1488  [001] .... 25377.775890: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit total:12
      <...>-1488  [001] .... 25377.775933: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:25
      <...>-1488  [001] .... 25377.776059: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx status:0, eid:1, req count:13, count:12, len:18672
      <...>-1879  [001] .... 25377.776100: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx complete, eid:1, pending complete count:12
      <...>-1488  [001] .... 25377.878079: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit update: delta:15
      <...>-1488  [001] .... 25377.878087: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit total:15
      <...>-1879  [000] .... 25377.878323: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:13
      <...>-1879  [000] .... 25377.878487: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx status:0, eid:1, req count:0, count:13, len:20228
      <...>-1879  [000] .... 25377.878497: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx complete, eid:1, pending complete count:13
      <...>-1488  [001] .... 25377.919927: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit update: delta:11
      <...>-1488  [001] .... 25377.919932: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 credit total:13
      <...>-1488  [001] .... 25377.919976: ath10k_log_dbg: ath10k_sdio mmc1:0001:1 bundle tx work, eid:1, count:0
      <...>-1881  [000] .... 25377.982645: ath10k_log_warn: ath10k_sdio mmc1:0001:1 HTT_T2H_MSG_TYPE_MGMT_TX_COMPLETION status:0
      <...>-1513  [001] .... 25377.982973: ath10k_log_err: ath10k_sdio mmc1:0001:1 ath10k_mac_wait_tx_complete time_left:1810, pending:0-0
      
      Flush all pending TX packets for the 1st ath10k_flush reduced the wait
      time of the 2nd ath10k_flush and then suspend take short time.
      
      This Patch only effect SDIO chips.
      
      Tested with QCA6174 SDIO with firmware WLAN.RMH.4.4.1-00042.
      Signed-off-by: default avatarWen Gong <wgong@codeaurora.org>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200415233730.10581-1-wgong@codeaurora.org
      dd7fc554
    • Wen Gong's avatar
      ath10k: enable alt data of TX path for sdio · 2f918ea9
      Wen Gong authored
      The default credit size is 1792 bytes, but the IP mtu is 1500 bytes,
      then it has about 290 bytes's waste for each data packet on sdio
      transfer path for TX bundle, it will reduce the transmission utilization
      ratio for data packet.
      
      This patch enable the small credit size in firmware, firmware will use
      the new credit size 1556 bytes, it will increase the transmission
      utilization ratio for data packet on TX patch. It results in significant
      performance improvement on TX path.
      
      This patch only effect sdio chip, it will not effect PCI, SNOC etc.
      
      Tested with QCA6174 SDIO with firmware
      WLAN.RMH.4.4.1-00017-QCARMSWP-1.
      Signed-off-by: default avatarWen Gong <wgong@codeaurora.org>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200410061400.14231-3-wgong@codeaurora.org
      2f918ea9
    • Wen Gong's avatar
      ath10k: add htt TX bundle for sdio · c8334512
      Wen Gong authored
      The transmission utilization ratio for sdio bus for small packet is
      slow, because the space and time cost for sdio bus is same for large
      length packet and small length packet. So the speed of data for large
      length packet is higher than small length.
      
      Test result of different length of data:
      
      data packet(byte)   cost time(us)   calculated rate(Mbps)
            256               28                73
            512               33               124
           1024               35               234
           1792               45               318
          14336              168               682
          28672              333               688
          57344              660               695
      
      This patch change the TX packet from single packet to a large length
      bundle packet, max size is 32, it results in significant performance
      improvement on TX path.
      
      Also there's a fourth thread "ath10k_tx_complete_wq" added to ath10k as it
      improves TCP RX throughput (values in Mbps):
      
                                             TCP-RX    TCP-TX    UDP-RX      UDP-TX
      use workqueue_tx_complete              423       357       448         412
      change it to ar->workqueue             410       360       449         414
      change it to ar->workqueue_aux         405       339       446         401
      
      This patch only effect sdio chip, it will not effect PCI, SNOC etc.
      It only enable bundle for sdio chip.
      
      Tested with QCA6174 SDIO with firmware
      WLAN.RMH.4.4.1-00017-QCARMSWP-1.
      Signed-off-by: default avatarWen Gong <wgong@codeaurora.org>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200410061400.14231-2-wgong@codeaurora.org
      c8334512
    • Jason Yan's avatar
      ath11k: remove conversion to bool in ath11k_debug_fw_stats_process() · d8170934
      Jason Yan authored
      The '==' expression itself is bool, no need to convert it to bool again.
      This fixes the following coccicheck warning:
      
      drivers/net/wireless/ath/ath11k/debug.c:198:57-62: WARNING: conversion
      to bool not needed here
      drivers/net/wireless/ath/ath11k/debug.c:218:58-63: WARNING: conversion
      to bool not needed here
      Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200420123745.4159-1-yanaijie@huawei.com
      d8170934
    • Jason Yan's avatar
      ath11k: remove conversion to bool in ath11k_dp_rxdesc_mpdu_valid() · 8af40902
      Jason Yan authored
      The '==' expression itself is bool, no need to convert it to bool again.
      This fixes the following coccicheck warning:
      
      drivers/net/wireless/ath/ath11k/dp_rx.c:255:46-51: WARNING: conversion
      to bool not needed here
      Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200420123718.3384-1-yanaijie@huawei.com
      8af40902
  4. 21 Apr, 2020 4 commits
  5. 15 Apr, 2020 6 commits
  6. 14 Apr, 2020 6 commits
  7. 12 Apr, 2020 10 commits
    • Linus Torvalds's avatar
      Linux 5.7-rc1 · 8f3d9f35
      Linus Torvalds authored
      8f3d9f35
    • Linus Torvalds's avatar
      MAINTAINERS: sort field names for all entries · 3b50142d
      Linus Torvalds authored
      This sorts the actual field names too, potentially causing even more
      chaos and confusion at merge time if you have edited the MAINTAINERS
      file.  But the end result is a more consistent layout, and hopefully
      it's a one-time pain minimized by doing this just before the -rc1
      release.
      
      This was entirely scripted:
      
        ./scripts/parse-maintainers.pl --input=MAINTAINERS --output=MAINTAINERS --order
      Requested-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      3b50142d
    • Linus Torvalds's avatar
      MAINTAINERS: sort entries by entry name · 4400b7d6
      Linus Torvalds authored
      They are all supposed to be sorted, but people who add new entries don't
      always know the alphabet.  Plus sometimes the entry names get edited,
      and people don't then re-order the entry.
      
      Let's see how painful this will be for merging purposes (the MAINTAINERS
      file is often edited in various different trees), but Joe claims there's
      relatively few patches in -next that touch this, and doing it just
      before -rc1 is likely the best time.  Fingers crossed.
      
      This was scripted with
      
        /scripts/parse-maintainers.pl --input=MAINTAINERS --output=MAINTAINERS
      
      but then I also ended up manually upper-casing a few entry names that
      stood out when looking at the end result.
      Requested-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      4400b7d6
    • Linus Torvalds's avatar
      Merge tag 'x86-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 4f8a3cc1
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
       "A set of three patches to fix the fallout of the newly added split
        lock detection feature.
      
        It addressed the case where a KVM guest triggers a split lock #AC and
        KVM reinjects it into the guest which is not prepared to handle it.
      
        Add proper sanity checks which prevent the unconditional injection
        into the guest and handles the #AC on the host side in the same way as
        user space detections are handled. Depending on the detection mode it
        either warns and disables detection for the task or kills the task if
        the mode is set to fatal"
      
      * tag 'x86-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        KVM: VMX: Extend VMXs #AC interceptor to handle split lock #AC in guest
        KVM: x86: Emulate split-lock access as a write in emulator
        x86/split_lock: Provide handle_guest_split_lock()
      4f8a3cc1
    • Linus Torvalds's avatar
      Merge tag 'timers-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 0785249f
      Linus Torvalds authored
      Pull time(keeping) updates from Thomas Gleixner:
      
       - Fix the time_for_children symlink in /proc/$PID/ so it properly
         reflects that it part of the 'time' namespace
      
       - Add the missing userns limit for the allowed number of time
         namespaces, which was half defined but the actual array member was
         not added. This went unnoticed as the array has an exessive empty
         member at the end but introduced a user visible regression as the
         output was corrupted.
      
       - Prevent further silent ucount corruption by adding a BUILD_BUG_ON()
         to catch half updated data.
      
      * tag 'timers-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        ucount: Make sure ucounts in /proc/sys/user don't regress again
        time/namespace: Add max_time_namespaces ucount
        time/namespace: Fix time_for_children symlink
      0785249f
    • Linus Torvalds's avatar
      Merge tag 'sched-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 590680d1
      Linus Torvalds authored
      Pull scheduler fixes/updates from Thomas Gleixner:
      
       - Deduplicate the average computations in the scheduler core and the
         fair class code.
      
       - Fix a raise between runtime distribution and assignement which can
         cause exceeding the quota by up to 70%.
      
       - Prevent negative results in the imbalanace calculation
      
       - Remove a stale warning in the workqueue code which can be triggered
         since the call site was moved out of preempt disabled code. It's a
         false positive.
      
       - Deduplicate the print macros for procfs
      
       - Add the ucmap values to the SCHED_DEBUG procfs output for completness
      
      * tag 'sched-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        sched/debug: Add task uclamp values to SCHED_DEBUG procfs
        sched/debug: Factor out printing formats into common macros
        sched/debug: Remove redundant macro define
        sched/core: Remove unused rq::last_load_update_tick
        workqueue: Remove the warning in wq_worker_sleeping()
        sched/fair: Fix negative imbalance in imbalance calculation
        sched/fair: Fix race between runtime distribution and assignment
        sched/fair: Align rq->avg_idle and rq->avg_scan_cost
      590680d1
    • Linus Torvalds's avatar
      Merge tag 'perf-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 20e2aa81
      Linus Torvalds authored
      Pull perf fixes from Thomas Gleixner:
       "Three fixes/updates for perf:
      
         - Fix the perf event cgroup tracking which tries to track the cgroup
           even for disabled events.
      
         - Add Ice Lake server support for uncore events
      
         - Disable pagefaults when retrieving the physical address in the
           sampling code"
      
      * tag 'perf-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        perf/core: Disable page faults when getting phys address
        perf/x86/intel/uncore: Add Ice Lake server uncore support
        perf/cgroup: Correct indirection in perf_less_group_idx()
        perf/core: Fix event cgroup tracking
      20e2aa81
    • Linus Torvalds's avatar
      Merge tag 'locking-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 652fa53c
      Linus Torvalds authored
      Pull locking fixes from Thomas Gleixner:
       "Three small fixes/updates for the locking core code:
      
         - Plug a task struct reference leak in the percpu rswem
           implementation.
      
         - Document the refcount interaction with PID_MAX_LIMIT
      
         - Improve the 'invalid wait context' data dump in lockdep so it
           contains all information which is required to decode the problem"
      
      * tag 'locking-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        locking/lockdep: Improve 'invalid wait context' splat
        locking/refcount: Document interaction with PID_MAX_LIMIT
        locking/percpu-rwsem: Fix a task_struct refcount
      652fa53c
    • Linus Torvalds's avatar
      Merge tag '5.7-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6 · 4119bf9f
      Linus Torvalds authored
      Pull cifs fixes from Steve French:
       "Ten cifs/smb fixes:
      
         - five RDMA (smbdirect) related fixes
      
         - add experimental support for swap over SMB3 mounts
      
         - also a fix which improves performance of signed connections"
      
      * tag '5.7-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
        smb3: enable swap on SMB3 mounts
        smb3: change noisy error message to FYI
        smb3: smbdirect support can be configured by default
        cifs: smbd: Do not schedule work to send immediate packet on every receive
        cifs: smbd: Properly process errors on ib_post_send
        cifs: Allocate crypto structures on the fly for calculating signatures of incoming packets
        cifs: smbd: Update receive credits before sending and deal with credits roll back on failure before sending
        cifs: smbd: Check send queue size before posting a send
        cifs: smbd: Merge code to track pending packets
        cifs: ignore cached share root handle closing errors
      4119bf9f
    • Linus Torvalds's avatar
      Merge tag 'nfs-for-5.7-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs · 50bda5fa
      Linus Torvalds authored
      Pull NFS client bugfix from Trond Myklebust:
       "Fix an RCU read lock leakage in pnfs_alloc_ds_commits_list()"
      
      * tag 'nfs-for-5.7-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs:
        pNFS: Fix RCU lock leakage
      50bda5fa
  8. 11 Apr, 2020 4 commits
    • Linus Torvalds's avatar
      Merge tag 'nios2-v5.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2 · b032227c
      Linus Torvalds authored
      Pull nios2 updates from Ley Foon Tan:
      
       - Remove nios2-dev@lists.rocketboards.org from MAINTAINERS
      
       - remove 'resetvalue' property
      
       - rename 'altr,gpio-bank-width' -> 'altr,ngpio'
      
       - enable the common clk subsystem on Nios2
      
      * tag 'nios2-v5.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2:
        MAINTAINERS: Remove nios2-dev@lists.rocketboards.org
        arch: nios2: remove 'resetvalue' property
        arch: nios2: rename 'altr,gpio-bank-width' -> 'altr,ngpio'
        arch: nios2: Enable the common clk subsystem on Nios2
      b032227c
    • Linus Torvalds's avatar
      Merge tag 'dma-mapping-5.7-1' of git://git.infradead.org/users/hch/dma-mapping · 75e71883
      Linus Torvalds authored
      Pull dma-mapping fixes from Christoph Hellwig:
      
       - fix an integer truncation in dma_direct_get_required_mask
         (Kishon Vijay Abraham)
      
       - fix the display of dma mapping types (Grygorii Strashko)
      
      * tag 'dma-mapping-5.7-1' of git://git.infradead.org/users/hch/dma-mapping:
        dma-debug: fix displaying of dma allocation type
        dma-direct: fix data truncation in dma_direct_get_required_mask()
      75e71883
    • Linus Torvalds's avatar
      Merge tag 'kbuild-v5.7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild · b753101a
      Linus Torvalds authored
      Pull more Kbuild updates from Masahiro Yamada:
      
       - raise minimum supported binutils version to 2.23
      
       - remove old CONFIG_AS_* macros that we know binutils >= 2.23 supports
      
       - move remaining CONFIG_AS_* tests to Kconfig from Makefile
      
       - enable -Wtautological-compare warnings to catch more issues
      
       - do not support GCC plugins for GCC <= 4.7
      
       - fix various breakages of 'make xconfig'
      
       - include the linker version used for linking the kernel into
         LINUX_COMPILER, which is used for the banner, and also exposed to
         /proc/version
      
       - link lib-y objects to vmlinux forcibly when CONFIG_MODULES=y, which
         allows us to remove the lib-ksyms.o workaround, and to solve the last
         known issue of the LLVM linker
      
       - add dummy tools in scripts/dummy-tools/ to enable all compiler tests
         in Kconfig, which will be useful for distro maintainers
      
       - support the single switch, LLVM=1 to use Clang and all LLVM utilities
         instead of GCC and Binutils.
      
       - support LLVM_IAS=1 to enable the integrated assembler, which is still
         experimental
      
      * tag 'kbuild-v5.7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (36 commits)
        kbuild: fix comment about missing include guard detection
        kbuild: support LLVM=1 to switch the default tools to Clang/LLVM
        kbuild: replace AS=clang with LLVM_IAS=1
        kbuild: add dummy toolchains to enable all cc-option etc. in Kconfig
        kbuild: link lib-y objects to vmlinux forcibly when CONFIG_MODULES=y
        MIPS: fw: arc: add __weak to prom_meminit and prom_free_prom_memory
        kbuild: remove -I$(srctree)/tools/include from scripts/Makefile
        kbuild: do not pass $(KBUILD_CFLAGS) to scripts/mkcompile_h
        Documentation/llvm: fix the name of llvm-size
        kbuild: mkcompile_h: Include $LD version in /proc/version
        kconfig: qconf: Fix a few alignment issues
        kconfig: qconf: remove some old bogus TODOs
        kconfig: qconf: fix support for the split view mode
        kconfig: qconf: fix the content of the main widget
        kconfig: qconf: Change title for the item window
        kconfig: qconf: clean deprecated warnings
        gcc-plugins: drop support for GCC <= 4.7
        kbuild: Enable -Wtautological-compare
        x86: update AS_* macros to binutils >=2.23, supporting ADX and AVX2
        crypto: x86 - clean up poly1305-x86_64-cryptogams.S by 'make clean'
        ...
      b753101a
    • Sedat Dilek's avatar
      mailmap: Add Sedat Dilek (replacement for expired email address) · c7850ae4
      Sedat Dilek authored
      I do not longer work for credativ Germany.
      
      Please, use my private email address instead.
      
      This is for the case when people want to CC me on
      patches sent from my old business email address.
      Signed-off-by: default avatarSedat Dilek <sedat.dilek@gmail.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      c7850ae4