]> git.baikalelectronics.ru Git - kernel.git/commit
libertas: fix handling of command timeout, completion and interruption
authorDaniel Drake <dsd@laptop.org>
Sat, 9 Jul 2011 14:41:25 +0000 (15:41 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 11 Jul 2011 19:02:19 +0000 (15:02 -0400)
commit7780d0b798e4f225a1890560f96b898955d23e8d
tree343229cb6b303b4e21aa37bd936ae822b94d0528
parent5eb80e7c5dcf48bb6635bdff30cbcc40efb429da
libertas: fix handling of command timeout, completion and interruption

When commands time out, corruption ensues. As lbs_complete_command()
is called without locking, the command node is mistakenly freed twice.
Also fixed up locking here in a few other places.

The nature of command timeout may be that the card didn't even
acknowledge receipt of the request. Detect this case and reset dnld_sent
so that other commands don't hang forever.

When cmdnodes are moved between the free list and the pending list,
their list heads should be reinitialized. Fixed this.

Sometimes commands are completed without actually submitting them or
removing them from cmdpendingq. We must remember to remove them from
cmdpendingq in these cases, so handle this in lbs_complete_command().

Harmless signals generated during suspend/resume were interrupting
lbs_cmd. Convert to an uninterruptible sleep to avoid this.

lbs_thread must be woken up every time there is some new work to do.
I found that when 2 commands are queued, ther completion of the first
command would not wake up lbs_thread to submit the second. Poke lbs_thread
at the end of lbs_complete_command() to fix this.

Signed-off-by: Daniel Drake <dsd@laptop.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/libertas/cmd.c
drivers/net/wireless/libertas/cmd.h
drivers/net/wireless/libertas/cmdresp.c
drivers/net/wireless/libertas/main.c