diff mbox series

ath11k: fix mutex definition without comment warning

Message ID 1561456588-9460-1-git-send-email-periyasa@codeaurora.org (mailing list archive)
State Accepted
Commit 5896237bc8397b20c71e793ee211ff550b552e3d
Delegated to: Kalle Valo
Headers show
Series ath11k: fix mutex definition without comment warning | expand

Commit Message

Karthikeyan periyasamy June 25, 2019, 9:56 a.m. UTC
drivers/net/wireless/ath/ath11k/core.h:446: struct mutex definition without comment
drivers/net/wireless/ath/ath11k/core.h:447: spinlock_t definition without comment
drivers/net/wireless/ath/ath11k/core.h:478: spinlock_t definition without comment

Signed-off-by: Karthikeyan Periyasamy <periyasa@codeaurora.org>
---
 drivers/net/wireless/ath/ath11k/core.h | 9 +++++++++
 1 file changed, 9 insertions(+)

Comments

Kalle Valo June 26, 2019, 7:58 a.m. UTC | #1
Karthikeyan Periyasamy <periyasa@codeaurora.org> wrote:

> drivers/net/wireless/ath/ath11k/core.h:446: struct mutex definition without comment
> drivers/net/wireless/ath/ath11k/core.h:447: spinlock_t definition without comment
> drivers/net/wireless/ath/ath11k/core.h:478: spinlock_t definition without comment
> 
> Signed-off-by: Karthikeyan Periyasamy <periyasa@codeaurora.org>
> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>

Patch applied to ath11k-bringup branch of ath.git, thanks.

5896237bc839 ath11k: fix mutex definition without comment warning
diff mbox series

Patch

diff --git a/drivers/net/wireless/ath/ath11k/core.h b/drivers/net/wireless/ath/ath11k/core.h
index 65c1a6d..e5b1747 100644
--- a/drivers/net/wireless/ath/ath11k/core.h
+++ b/drivers/net/wireless/ath/ath11k/core.h
@@ -443,8 +443,16 @@  struct ath11k {
 	u32 num_stations;
 	u32 max_num_stations;
 	bool monitor_present;
+	/* To synchronize concurrent synchronous mac80211 callback operations,
+	 * concurrent debugfs configuration and concurrent FW statistics events.
+	 */
 	struct mutex conf_mutex;
+	/* protects the radio specific data like debug stats, ppdu_stats_info stats,
+	 * vdev_stop_status info, scan data, ath11k_sta info, ath11k_vif info,
+	 * channel context data, survey info, test mode data.
+	 */
 	spinlock_t data_lock;
+
 	struct list_head arvifs;
 	/* should never be NULL; needed for regular htt rx */
 	struct ieee80211_channel *rx_channel;
@@ -475,6 +483,7 @@  struct ath11k {
 	u32 num_created_vdevs;
 
 	struct idr txmgmt_idr;
+	/* protects txmgmt_idr data */
 	spinlock_t txmgmt_idr_lock;
 
 	/* cycle count is reported twice for each visited channel during scan.