|
@@ -2049,6 +2049,44 @@ QDF_STATUS hdd_add_adapter_back(struct hdd_context *hdd_ctx,
|
|
|
QDF_STATUS hdd_add_adapter_front(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *adapter);
|
|
|
|
|
|
+/**
|
|
|
+ * typedef hdd_adapter_iterate_cb() – Iteration callback function
|
|
|
+ * @adapter: current adapter of interest
|
|
|
+ * @context: user context supplied to the iterator
|
|
|
+ *
|
|
|
+ * This specifies the type of a callback function to supply to
|
|
|
+ * hdd_adapter_iterate().
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ * * QDF_STATUS_SUCCESS if further iteration should continue
|
|
|
+ * * QDF_STATUS_E_ABORTED if further iteration should be aborted
|
|
|
+ */
|
|
|
+typedef QDF_STATUS (*hdd_adapter_iterate_cb)(struct hdd_adapter *adapter,
|
|
|
+ void *context);
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_adapter_iterate() – Safely iterate over all adapters
|
|
|
+ * @cb: callback function to invoke for each adapter
|
|
|
+ * @context: user-supplied context to pass to @cb
|
|
|
+ *
|
|
|
+ * This function will iterate over all of the adapters known to the system in
|
|
|
+ * a safe manner, invoking the callback function for each adapter.
|
|
|
+ * The callback function will be invoked in the same context/thread as the
|
|
|
+ * caller without any additional locks in force.
|
|
|
+ * Iteration continues until either the callback has been invoked for all
|
|
|
+ * adapters or a callback returns a value of QDF_STATUS_E_ABORTED to indicate
|
|
|
+ * that further iteration should cease.
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ * * QDF_STATUS_E_ABORTED if any callback function returns that value
|
|
|
+ * * QDF_STATUS_E_FAILURE if the callback was not invoked for all adapters due
|
|
|
+ * to concurrency (i.e. adapter was deleted while iterating)
|
|
|
+ * * QDF_STATUS_SUCCESS if @cb was invoked for each adapter and none returned
|
|
|
+ * an error
|
|
|
+ */
|
|
|
+QDF_STATUS hdd_adapter_iterate(hdd_adapter_iterate_cb cb,
|
|
|
+ void *context);
|
|
|
+
|
|
|
/**
|
|
|
* hdd_for_each_adapter - adapter iterator macro
|
|
|
* @hdd_ctx: the global HDD context
|