mac80211: pass the vif to cancel_remain_on_channel
This low level driver can find it useful to get the vif when a remain on channel session is cancelled. iwlwifi will need this soon. Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Link: https://lore.kernel.org/r/20190723180001.5828-1-emmanuel.grumbach@intel.com Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:

committed by
Johannes Berg

parent
690c4509e9
commit
5db4c4b955
@@ -8,6 +8,7 @@
|
||||
* Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
|
||||
* Copyright 2007, Michael Wu <flamingice@sourmilk.net>
|
||||
* Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
|
||||
* Copyright (C) 2019 Intel Corporation
|
||||
*/
|
||||
#include <linux/export.h>
|
||||
#include <net/mac80211.h>
|
||||
@@ -732,7 +733,7 @@ static int ieee80211_cancel_roc(struct ieee80211_local *local,
|
||||
}
|
||||
|
||||
if (local->ops->remain_on_channel) {
|
||||
ret = drv_cancel_remain_on_channel(local);
|
||||
ret = drv_cancel_remain_on_channel(local, roc->sdata);
|
||||
if (WARN_ON_ONCE(ret)) {
|
||||
mutex_unlock(&local->mtx);
|
||||
return ret;
|
||||
@@ -991,7 +992,7 @@ void ieee80211_roc_purge(struct ieee80211_local *local,
|
||||
if (roc->started) {
|
||||
if (local->ops->remain_on_channel) {
|
||||
/* can race, so ignore return value */
|
||||
drv_cancel_remain_on_channel(local);
|
||||
drv_cancel_remain_on_channel(local, sdata);
|
||||
ieee80211_roc_notify_destroy(roc);
|
||||
} else {
|
||||
roc->abort = true;
|
||||
|
Reference in New Issue
Block a user