diff options
author | Dave Kleikamp <[email protected]> | 2006-10-10 14:45:46 -0700 |
---|---|---|
committer | John W. Linville <[email protected]> | 2006-10-16 20:09:49 -0400 |
commit | 5bb85f18087b10a908bd793e9fd3ccd63aebb724 (patch) | |
tree | df42475293ddb5f4a6df3ee6da3999d7df55c66c | |
parent | 53077944f119808df3d1c6be07241f17a87e7c28 (diff) |
[PATCH] airo: check if need to freeze
The airo driver used to break out of while loop if there were any signals
pending. Since it no longer checks for signals, it at least needs to check
if it needs to be frozen.
Signed-off-by: Dave Kleikamp <[email protected]>
Cc: Jean Tourrilhes <[email protected]>
Cc: Sukadev Bhattiprolu <[email protected]>
Cc: Jeff Garzik <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
-rw-r--r-- | drivers/net/wireless/airo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index e0710fa9702e..efcdaf1c5f73 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c @@ -3098,7 +3098,8 @@ static int airo_thread(void *data) { set_bit(JOB_AUTOWEP, &ai->jobs); break; } - if (!kthread_should_stop()) { + if (!kthread_should_stop() && + !freezing(current)) { unsigned long wake_at; if (!ai->expires || !ai->scan_timeout) { wake_at = max(ai->expires, @@ -3110,7 +3111,8 @@ static int airo_thread(void *data) { schedule_timeout(wake_at - jiffies); continue; } - } else if (!kthread_should_stop()) { + } else if (!kthread_should_stop() && + !freezing(current)) { schedule(); continue; } |