浏览代码

qcacld-3.0: Fix Denylist Manager documentation

The kernel-doc script identified a few documentation issues in
components/denylist_mgr, so fix them.

Change-Id: I45fc8c6a637cebccf324dd44102b894fc84e7f2b
CRs-Fixed: 3361722
Jeff Johnson 2 年之前
父节点
当前提交
779bce7bd9

+ 23 - 4
components/denylist_mgr/core/inc/wlan_dlm_core.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -120,9 +120,28 @@ struct dlm_reject_ap_timestamp {
  * @bssid: Bssid of the AP entry.
  * @rssi_reject_params: Rssi reject params of the AP entry.
  * @bad_bssid_counter: It represent how many times data stall happened.
- * @ap_timestamp: Ap timestamp.
- * @reject_ap_type: what is the type of rejection for the AP (avoid, deny etc.)
- * @reject_ap_reason: reason for adding the BSSID to DLM
+ * @ap_timestamp: AP timestamp.
+ * @reject_ap_type: consolidated bitmap of rejection types for the AP
+ * @userspace_denylist: AP in userspace denylist
+ * @driver_denylist: AP in driver denylist
+ * @userspace_avoidlist: AP in userspace avoidlist
+ * @driver_avoidlist: AP in driver avoidlist
+ * @rssi_reject_list: AP has bad RSSI
+ * @driver_monitorlist: AP is monitored
+ * @reject_ap_reason: consolidated bitmap of rejection reasons for the AP
+ * @nud_fail: NUD fail reason
+ * @sta_kickout: STA kickout reason
+ * @ho_fail: Handoff failure reason
+ * @poor_rssi: Poor RSSI reason
+ * @oce_assoc_reject: OCE association rejected reason
+ * @denylist_userspace: Userspace denylist reason
+ * @avoid_userspace: Userspace avoidlist reason
+ * @btm_disassoc_imminent: BTM disassociation imminent reason
+ * @btm_bss_termination: BTM BSS termination reason
+ * @btm_mbo_retry: BTM MBO retry reason
+ * @reassoc_rssi_reject: Reassociation RSSI rejection reason
+ * @no_more_stas: AP reached STA capacity reason
+ * @source: source of the rejection
  * @connect_timestamp: Timestamp when the STA got connected with this BSSID
  */
 struct dlm_reject_ap {

+ 2 - 2
components/denylist_mgr/dispatcher/inc/wlan_dlm_public_struct.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -31,7 +31,7 @@
 #define PDEV_MAX_NUM_BSSID_DISALLOW_LIST   28
 
 /**
- * enum dlm_reject_ap_reason - Rejection reason for adding BSSID to DLM
+ * enum dlm_reject_ap_source - Source of adding BSSID to DLM
  * @ADDED_BY_DRIVER: Source adding this BSSID is driver
  * @ADDED_BY_TARGET: Source adding this BSSID is target
  */

+ 2 - 2
components/denylist_mgr/dispatcher/inc/wlan_dlm_ucfg_api.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -151,7 +151,7 @@ ucfg_dlm_add_bssid_to_reject_list(struct wlan_objmgr_pdev *pdev,
 
 /**
  * ucfg_dlm_wifi_off() - Inform the denylist manager about wifi off
- * @dlm_ctx: denylist manager pdev priv object
+ * @pdev: Pdev object
  *
  * This API will inform the denylist manager that the user has turned wifi off
  * from the UI, and the denylist manager can take action based upon this.