|
@@ -16652,7 +16652,6 @@ void wlan_hdd_del_monitor(struct hdd_context *hdd_ctx,
|
|
|
* wlan_hdd_add_monitor_check() - check for monitor intf and add if needed
|
|
|
* @hdd_ctx: pointer to hdd context
|
|
|
* @adapter: output pointer to hold created monitor adapter
|
|
|
- * @type: type of the interface
|
|
|
* @name: name of the interface
|
|
|
* @rtnl_held: True if RTNL lock is held
|
|
|
* @name_assign_type: the name of assign type of the netdev
|
|
@@ -16663,25 +16662,23 @@ void wlan_hdd_del_monitor(struct hdd_context *hdd_ctx,
|
|
|
int
|
|
|
wlan_hdd_add_monitor_check(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter **adapter,
|
|
|
- enum nl80211_iftype type, const char *name,
|
|
|
- bool rtnl_held, unsigned char name_assign_type)
|
|
|
+ const char *name, bool rtnl_held,
|
|
|
+ unsigned char name_assign_type)
|
|
|
{
|
|
|
struct hdd_adapter *sta_adapter;
|
|
|
struct hdd_adapter *mon_adapter;
|
|
|
uint32_t mode;
|
|
|
uint8_t num_open_session = 0;
|
|
|
|
|
|
- if (!ucfg_pkt_capture_get_mode(hdd_ctx->psoc))
|
|
|
- return 0;
|
|
|
+ /* if no interface is up do not add monitor mode */
|
|
|
+ if (!hdd_is_any_interface_open(hdd_ctx))
|
|
|
+ return -EINVAL;
|
|
|
|
|
|
/*
|
|
|
* If add interface request is for monitor mode, then it can run in
|
|
|
* parallel with only one station interface.
|
|
|
* If there is no existing station interface return error
|
|
|
*/
|
|
|
- if (type != NL80211_IFTYPE_MONITOR)
|
|
|
- return 0;
|
|
|
-
|
|
|
if (QDF_STATUS_SUCCESS != policy_mgr_mode_specific_num_open_sessions(
|
|
|
hdd_ctx->psoc,
|
|
|
QDF_MONITOR_MODE,
|