diff options
Diffstat (limited to 'net/mac80211/work.c')
-rw-r--r-- | net/mac80211/work.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/mac80211/work.c b/net/mac80211/work.c index 5ba75990c9fd..7c5d95b1bc04 100644 --- a/net/mac80211/work.c +++ b/net/mac80211/work.c | |||
@@ -818,6 +818,7 @@ static void ieee80211_work_work(struct work_struct *work) | |||
818 | wk->chan == local->tmp_channel && | 818 | wk->chan == local->tmp_channel && |
819 | wk->chan_type == local->tmp_channel_type) { | 819 | wk->chan_type == local->tmp_channel_type) { |
820 | wk->started = true; | 820 | wk->started = true; |
821 | wk->timeout = jiffies; | ||
821 | } | 822 | } |
822 | 823 | ||
823 | if (!wk->started && !local->tmp_channel) { | 824 | if (!wk->started && !local->tmp_channel) { |
@@ -935,6 +936,9 @@ void ieee80211_add_work(struct ieee80211_work *wk) | |||
935 | if (WARN_ON(!wk->done)) | 936 | if (WARN_ON(!wk->done)) |
936 | return; | 937 | return; |
937 | 938 | ||
939 | if (WARN_ON(!ieee80211_sdata_running(wk->sdata))) | ||
940 | return; | ||
941 | |||
938 | wk->started = false; | 942 | wk->started = false; |
939 | 943 | ||
940 | local = wk->sdata->local; | 944 | local = wk->sdata->local; |