blob: 1430b48600fc8052e63089cac0c04d86d5f4a07b [file] [log] [blame]
Jouni Malinenb203ffc2009-12-23 13:15:40 +01001/*
2 * Off-channel operation helpers
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2004, Instant802 Networks, Inc.
6 * Copyright 2005, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040015#include <linux/export.h>
Jouni Malinenb203ffc2009-12-23 13:15:40 +010016#include <net/mac80211.h>
17#include "ieee80211_i.h"
Johannes Berg2eb278e2012-06-05 14:28:42 +020018#include "driver-ops.h"
Jouni Malinenb203ffc2009-12-23 13:15:40 +010019
20/*
Ben Greearb23b0252011-02-04 11:54:17 -080021 * Tell our hardware to disable PS.
22 * Optionally inform AP that we will go to sleep so that it will buffer
23 * the frames while we are doing off-channel work. This is optional
24 * because we *may* be doing work on-operating channel, and want our
25 * hardware unconditionally awake, but still let the AP send us normal frames.
Jouni Malinenb203ffc2009-12-23 13:15:40 +010026 */
Rajkumar Manoharan559cef92012-06-18 19:03:52 +053027static void ieee80211_offchannel_ps_enable(struct ieee80211_sub_if_data *sdata)
Jouni Malinenb203ffc2009-12-23 13:15:40 +010028{
29 struct ieee80211_local *local = sdata->local;
Luis R. Rodriguez4730d592010-09-16 15:12:31 -040030 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinenb203ffc2009-12-23 13:15:40 +010031
32 local->offchannel_ps_enabled = false;
33
34 /* FIXME: what to do when local->pspolling is true? */
35
36 del_timer_sync(&local->dynamic_ps_timer);
Luis R. Rodriguez3bc3c0d2010-09-16 15:12:33 -040037 del_timer_sync(&ifmgd->bcn_mon_timer);
Luis R. Rodriguez4730d592010-09-16 15:12:31 -040038 del_timer_sync(&ifmgd->conn_mon_timer);
39
Jouni Malinenb203ffc2009-12-23 13:15:40 +010040 cancel_work_sync(&local->dynamic_ps_enable_work);
41
42 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
43 local->offchannel_ps_enabled = true;
44 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
45 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
46 }
47
Rajkumar Manoharan559cef92012-06-18 19:03:52 +053048 if (!local->offchannel_ps_enabled ||
49 !(local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK))
Jouni Malinenb203ffc2009-12-23 13:15:40 +010050 /*
51 * If power save was enabled, no need to send a nullfunc
52 * frame because AP knows that we are sleeping. But if the
53 * hardware is creating the nullfunc frame for power save
54 * status (ie. IEEE80211_HW_PS_NULLFUNC_STACK is not
55 * enabled) and power save was enabled, the firmware just
56 * sent a null frame with power save disabled. So we need
57 * to send a new nullfunc frame to inform the AP that we
58 * are again sleeping.
59 */
60 ieee80211_send_nullfunc(local, sdata, 1);
61}
62
63/* inform AP that we are awake again, unless power save is enabled */
64static void ieee80211_offchannel_ps_disable(struct ieee80211_sub_if_data *sdata)
65{
66 struct ieee80211_local *local = sdata->local;
67
68 if (!local->ps_sdata)
69 ieee80211_send_nullfunc(local, sdata, 0);
70 else if (local->offchannel_ps_enabled) {
71 /*
72 * In !IEEE80211_HW_PS_NULLFUNC_STACK case the hardware
73 * will send a nullfunc frame with the powersave bit set
74 * even though the AP already knows that we are sleeping.
75 * This could be avoided by sending a null frame with power
76 * save bit disabled before enabling the power save, but
77 * this doesn't gain anything.
78 *
79 * When IEEE80211_HW_PS_NULLFUNC_STACK is enabled, no need
80 * to send a nullfunc frame because AP already knows that
81 * we are sleeping, let's just enable power save mode in
82 * hardware.
83 */
Ben Greearb23b0252011-02-04 11:54:17 -080084 /* TODO: Only set hardware if CONF_PS changed?
85 * TODO: Should we set offchannel_ps_enabled to false?
86 */
Jouni Malinenb203ffc2009-12-23 13:15:40 +010087 local->hw.conf.flags |= IEEE80211_CONF_PS;
88 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
89 } else if (local->hw.conf.dynamic_ps_timeout > 0) {
90 /*
91 * If IEEE80211_CONF_PS was not set and the dynamic_ps_timer
92 * had been running before leaving the operating channel,
93 * restart the timer now and send a nullfunc frame to inform
94 * the AP that we are awake.
95 */
96 ieee80211_send_nullfunc(local, sdata, 0);
97 mod_timer(&local->dynamic_ps_timer, jiffies +
98 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
99 }
Luis R. Rodriguez4730d592010-09-16 15:12:31 -0400100
Luis R. Rodriguez3bc3c0d2010-09-16 15:12:33 -0400101 ieee80211_sta_reset_beacon_monitor(sdata);
Luis R. Rodriguez4730d592010-09-16 15:12:31 -0400102 ieee80211_sta_reset_conn_monitor(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100103}
104
Ben Greearb23b0252011-02-04 11:54:17 -0800105void ieee80211_offchannel_stop_vifs(struct ieee80211_local *local,
106 bool offchannel_ps_enable)
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100107{
108 struct ieee80211_sub_if_data *sdata;
109
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200110 if (WARN_ON(local->use_chanctx))
111 return;
112
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100113 /*
Ben Greearb23b0252011-02-04 11:54:17 -0800114 * notify the AP about us leaving the channel and stop all
115 * STA interfaces.
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100116 */
117 mutex_lock(&local->iflist_mtx);
118 list_for_each_entry(sdata, &local->interfaces, list) {
119 if (!ieee80211_sdata_running(sdata))
120 continue;
121
Johannes Bergf142c6b2012-06-18 20:07:15 +0200122 if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE)
123 continue;
124
Ben Greearb23b0252011-02-04 11:54:17 -0800125 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Berg5b714c62010-08-27 13:45:28 +0200126 set_bit(SDATA_STATE_OFFCHANNEL, &sdata->state);
Ben Greearb23b0252011-02-04 11:54:17 -0800127
128 /* Check to see if we should disable beaconing. */
Johannes Bergd6a83222012-12-14 14:06:28 +0100129 if (sdata->vif.bss_conf.enable_beacon) {
130 set_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED,
131 &sdata->state);
132 sdata->vif.bss_conf.enable_beacon = false;
Ben Greearb23b0252011-02-04 11:54:17 -0800133 ieee80211_bss_info_change_notify(
134 sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergd6a83222012-12-14 14:06:28 +0100135 }
Ben Greearb23b0252011-02-04 11:54:17 -0800136
137 if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
John W. Linvillecfa6cb22010-01-06 17:22:54 -0500138 netif_tx_stop_all_queues(sdata->dev);
Ben Greearb23b0252011-02-04 11:54:17 -0800139 if (offchannel_ps_enable &&
140 (sdata->vif.type == NL80211_IFTYPE_STATION) &&
141 sdata->u.mgd.associated)
Rajkumar Manoharan559cef92012-06-18 19:03:52 +0530142 ieee80211_offchannel_ps_enable(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100143 }
144 }
145 mutex_unlock(&local->iflist_mtx);
146}
147
148void ieee80211_offchannel_return(struct ieee80211_local *local,
Ben Greearb23b0252011-02-04 11:54:17 -0800149 bool offchannel_ps_disable)
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100150{
151 struct ieee80211_sub_if_data *sdata;
152
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200153 if (WARN_ON(local->use_chanctx))
154 return;
155
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100156 mutex_lock(&local->iflist_mtx);
157 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Bergf142c6b2012-06-18 20:07:15 +0200158 if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE)
159 continue;
160
Eliad Pellerf6e8cb72011-12-23 01:48:06 +0200161 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
162 clear_bit(SDATA_STATE_OFFCHANNEL, &sdata->state);
163
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100164 if (!ieee80211_sdata_running(sdata))
165 continue;
166
167 /* Tell AP we're back */
Ben Greearb23b0252011-02-04 11:54:17 -0800168 if (offchannel_ps_disable &&
169 sdata->vif.type == NL80211_IFTYPE_STATION) {
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100170 if (sdata->u.mgd.associated)
171 ieee80211_offchannel_ps_disable(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100172 }
173
Johannes Berg5b714c62010-08-27 13:45:28 +0200174 if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
Johannes Berg5b714c62010-08-27 13:45:28 +0200175 /*
176 * This may wake up queues even though the driver
177 * currently has them stopped. This is not very
178 * likely, since the driver won't have gotten any
179 * (or hardly any) new packets while we weren't
180 * on the right channel, and even if it happens
181 * it will at most lead to queueing up one more
182 * packet per queue in mac80211 rather than on
183 * the interface qdisc.
184 */
Benoit Papillault93895752010-01-14 23:20:31 +0100185 netif_tx_wake_all_queues(sdata->dev);
Johannes Berg5b714c62010-08-27 13:45:28 +0200186 }
Benoit Papillault93895752010-01-14 23:20:31 +0100187
Johannes Bergd6a83222012-12-14 14:06:28 +0100188 if (test_and_clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED,
189 &sdata->state)) {
190 sdata->vif.bss_conf.enable_beacon = true;
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100191 ieee80211_bss_info_change_notify(
192 sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergd6a83222012-12-14 14:06:28 +0100193 }
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100194 }
195 mutex_unlock(&local->iflist_mtx);
196}
Johannes Berg21f83582010-12-18 17:20:47 +0100197
Johannes Berg2eb278e2012-06-05 14:28:42 +0200198void ieee80211_handle_roc_started(struct ieee80211_roc_work *roc)
199{
200 if (roc->notified)
201 return;
202
203 if (roc->mgmt_tx_cookie) {
204 if (!WARN_ON(!roc->frame)) {
Johannes Berg55de9082012-07-26 17:24:39 +0200205 ieee80211_tx_skb_tid_band(roc->sdata, roc->frame, 7,
206 roc->chan->band);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200207 roc->frame = NULL;
208 }
209 } else {
Johannes Berg50febf62012-10-26 16:13:06 +0200210 cfg80211_ready_on_channel(&roc->sdata->wdev, roc->cookie,
Johannes Berg42d97a52012-11-08 18:31:02 +0100211 roc->chan, roc->req_duration,
212 GFP_KERNEL);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200213 }
214
215 roc->notified = true;
216}
217
Johannes Berg21f83582010-12-18 17:20:47 +0100218static void ieee80211_hw_roc_start(struct work_struct *work)
219{
220 struct ieee80211_local *local =
221 container_of(work, struct ieee80211_local, hw_roc_start);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200222 struct ieee80211_roc_work *roc, *dep, *tmp;
Johannes Berg21f83582010-12-18 17:20:47 +0100223
224 mutex_lock(&local->mtx);
225
Johannes Berg2eb278e2012-06-05 14:28:42 +0200226 if (list_empty(&local->roc_list))
227 goto out_unlock;
Johannes Berg21f83582010-12-18 17:20:47 +0100228
Johannes Berg2eb278e2012-06-05 14:28:42 +0200229 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
230 list);
Johannes Berg90fc4b32010-12-18 17:20:48 +0100231
Johannes Berg2eb278e2012-06-05 14:28:42 +0200232 if (!roc->started)
233 goto out_unlock;
234
235 roc->hw_begun = true;
236 roc->hw_start_time = local->hw_roc_start_time;
237
238 ieee80211_handle_roc_started(roc);
239 list_for_each_entry_safe(dep, tmp, &roc->dependents, list) {
240 ieee80211_handle_roc_started(dep);
241
242 if (dep->duration > roc->duration) {
243 u32 dur = dep->duration;
244 dep->duration = dur - roc->duration;
245 roc->duration = dur;
Wei Yongjuna4ed5342012-09-06 13:20:53 +0800246 list_move(&dep->list, &roc->list);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200247 }
248 }
249 out_unlock:
Johannes Berg21f83582010-12-18 17:20:47 +0100250 mutex_unlock(&local->mtx);
251}
252
253void ieee80211_ready_on_channel(struct ieee80211_hw *hw)
254{
255 struct ieee80211_local *local = hw_to_local(hw);
256
Johannes Berg2eb278e2012-06-05 14:28:42 +0200257 local->hw_roc_start_time = jiffies;
258
Johannes Berg21f83582010-12-18 17:20:47 +0100259 trace_api_ready_on_channel(local);
260
261 ieee80211_queue_work(hw, &local->hw_roc_start);
262}
263EXPORT_SYMBOL_GPL(ieee80211_ready_on_channel);
264
Johannes Berg2eb278e2012-06-05 14:28:42 +0200265void ieee80211_start_next_roc(struct ieee80211_local *local)
266{
267 struct ieee80211_roc_work *roc;
268
269 lockdep_assert_held(&local->mtx);
270
271 if (list_empty(&local->roc_list)) {
272 ieee80211_run_deferred_scan(local);
273 return;
274 }
275
276 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
277 list);
278
Johannes Berg0f6b3f52012-06-20 20:11:33 +0200279 if (WARN_ON_ONCE(roc->started))
280 return;
281
Johannes Berg2eb278e2012-06-05 14:28:42 +0200282 if (local->ops->remain_on_channel) {
283 int ret, duration = roc->duration;
284
285 /* XXX: duplicated, see ieee80211_start_roc_work() */
286 if (!duration)
287 duration = 10;
288
Eliad Peller49884562012-11-19 17:05:09 +0200289 ret = drv_remain_on_channel(local, roc->sdata, roc->chan,
Johannes Berg2eb278e2012-06-05 14:28:42 +0200290 duration);
291
292 roc->started = true;
293
294 if (ret) {
295 wiphy_warn(local->hw.wiphy,
296 "failed to start next HW ROC (%d)\n", ret);
297 /*
298 * queue the work struct again to avoid recursion
299 * when multiple failures occur
300 */
301 ieee80211_remain_on_channel_expired(&local->hw);
302 }
303 } else {
304 /* delay it a bit */
305 ieee80211_queue_delayed_work(&local->hw, &roc->work,
306 round_jiffies_relative(HZ/2));
307 }
308}
309
310void ieee80211_roc_notify_destroy(struct ieee80211_roc_work *roc)
311{
312 struct ieee80211_roc_work *dep, *tmp;
313
314 /* was never transmitted */
315 if (roc->frame) {
Johannes Berg71bbc992012-06-15 15:30:18 +0200316 cfg80211_mgmt_tx_status(&roc->sdata->wdev,
Johannes Berg2eb278e2012-06-05 14:28:42 +0200317 (unsigned long)roc->frame,
318 roc->frame->data, roc->frame->len,
319 false, GFP_KERNEL);
320 kfree_skb(roc->frame);
321 }
322
323 if (!roc->mgmt_tx_cookie)
Johannes Berg71bbc992012-06-15 15:30:18 +0200324 cfg80211_remain_on_channel_expired(&roc->sdata->wdev,
Johannes Berg50febf62012-10-26 16:13:06 +0200325 roc->cookie, roc->chan,
Johannes Berg42d97a52012-11-08 18:31:02 +0100326 GFP_KERNEL);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200327
328 list_for_each_entry_safe(dep, tmp, &roc->dependents, list)
329 ieee80211_roc_notify_destroy(dep);
330
331 kfree(roc);
332}
333
334void ieee80211_sw_roc_work(struct work_struct *work)
335{
336 struct ieee80211_roc_work *roc =
337 container_of(work, struct ieee80211_roc_work, work.work);
338 struct ieee80211_sub_if_data *sdata = roc->sdata;
339 struct ieee80211_local *local = sdata->local;
Alan Cox4b4b8222012-07-13 16:14:45 +0200340 bool started;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200341
342 mutex_lock(&local->mtx);
343
344 if (roc->abort)
345 goto finish;
346
347 if (WARN_ON(list_empty(&local->roc_list)))
348 goto out_unlock;
349
350 if (WARN_ON(roc != list_first_entry(&local->roc_list,
351 struct ieee80211_roc_work,
352 list)))
353 goto out_unlock;
354
355 if (!roc->started) {
356 struct ieee80211_roc_work *dep;
357
358 /* start this ROC */
359
360 /* switch channel etc */
361 ieee80211_recalc_idle(local);
362
363 local->tmp_channel = roc->chan;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200364 ieee80211_hw_config(local, 0);
365
366 /* tell userspace or send frame */
367 ieee80211_handle_roc_started(roc);
368 list_for_each_entry(dep, &roc->dependents, list)
369 ieee80211_handle_roc_started(dep);
370
371 /* if it was pure TX, just finish right away */
372 if (!roc->duration)
373 goto finish;
374
375 roc->started = true;
376 ieee80211_queue_delayed_work(&local->hw, &roc->work,
377 msecs_to_jiffies(roc->duration));
378 } else {
379 /* finish this ROC */
380 finish:
381 list_del(&roc->list);
Alan Cox4b4b8222012-07-13 16:14:45 +0200382 started = roc->started;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200383 ieee80211_roc_notify_destroy(roc);
384
Alan Cox4b4b8222012-07-13 16:14:45 +0200385 if (started) {
Johannes Berg2eb278e2012-06-05 14:28:42 +0200386 drv_flush(local, false);
387
388 local->tmp_channel = NULL;
389 ieee80211_hw_config(local, 0);
390
391 ieee80211_offchannel_return(local, true);
392 }
393
394 ieee80211_recalc_idle(local);
395
Alan Cox4b4b8222012-07-13 16:14:45 +0200396 if (started)
Johannes Berg0f6b3f52012-06-20 20:11:33 +0200397 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200398 }
399
400 out_unlock:
401 mutex_unlock(&local->mtx);
402}
403
Johannes Berg21f83582010-12-18 17:20:47 +0100404static void ieee80211_hw_roc_done(struct work_struct *work)
405{
406 struct ieee80211_local *local =
407 container_of(work, struct ieee80211_local, hw_roc_done);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200408 struct ieee80211_roc_work *roc;
Johannes Berg21f83582010-12-18 17:20:47 +0100409
410 mutex_lock(&local->mtx);
411
Johannes Berg2eb278e2012-06-05 14:28:42 +0200412 if (list_empty(&local->roc_list))
413 goto out_unlock;
Johannes Berg21f83582010-12-18 17:20:47 +0100414
Johannes Berg2eb278e2012-06-05 14:28:42 +0200415 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
416 list);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200417
Johannes Berg2eb278e2012-06-05 14:28:42 +0200418 if (!roc->started)
419 goto out_unlock;
Johannes Berg71ecfa12012-05-31 15:09:27 +0200420
Johannes Berg2eb278e2012-06-05 14:28:42 +0200421 list_del(&roc->list);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200422
Johannes Berg2eb278e2012-06-05 14:28:42 +0200423 ieee80211_roc_notify_destroy(roc);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200424
Johannes Berg2eb278e2012-06-05 14:28:42 +0200425 /* if there's another roc, start it now */
426 ieee80211_start_next_roc(local);
Johannes Berg21f83582010-12-18 17:20:47 +0100427
Johannes Berg2eb278e2012-06-05 14:28:42 +0200428 out_unlock:
Johannes Berg21f83582010-12-18 17:20:47 +0100429 mutex_unlock(&local->mtx);
430}
431
432void ieee80211_remain_on_channel_expired(struct ieee80211_hw *hw)
433{
434 struct ieee80211_local *local = hw_to_local(hw);
435
436 trace_api_remain_on_channel_expired(local);
437
438 ieee80211_queue_work(hw, &local->hw_roc_done);
439}
440EXPORT_SYMBOL_GPL(ieee80211_remain_on_channel_expired);
441
Johannes Berg2eb278e2012-06-05 14:28:42 +0200442void ieee80211_roc_setup(struct ieee80211_local *local)
Johannes Berg21f83582010-12-18 17:20:47 +0100443{
444 INIT_WORK(&local->hw_roc_start, ieee80211_hw_roc_start);
445 INIT_WORK(&local->hw_roc_done, ieee80211_hw_roc_done);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200446 INIT_LIST_HEAD(&local->roc_list);
447}
448
449void ieee80211_roc_purge(struct ieee80211_sub_if_data *sdata)
450{
451 struct ieee80211_local *local = sdata->local;
452 struct ieee80211_roc_work *roc, *tmp;
453 LIST_HEAD(tmp_list);
454
455 mutex_lock(&local->mtx);
456 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
457 if (roc->sdata != sdata)
458 continue;
459
460 if (roc->started && local->ops->remain_on_channel) {
461 /* can race, so ignore return value */
462 drv_cancel_remain_on_channel(local);
463 }
464
465 list_move_tail(&roc->list, &tmp_list);
466 roc->abort = true;
467 }
Johannes Berg2eb278e2012-06-05 14:28:42 +0200468 mutex_unlock(&local->mtx);
469
470 list_for_each_entry_safe(roc, tmp, &tmp_list, list) {
471 if (local->ops->remain_on_channel) {
472 list_del(&roc->list);
473 ieee80211_roc_notify_destroy(roc);
474 } else {
475 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
476
477 /* work will clean up etc */
478 flush_delayed_work(&roc->work);
479 }
480 }
481
482 WARN_ON_ONCE(!list_empty(&tmp_list));
Johannes Berg21f83582010-12-18 17:20:47 +0100483}