diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2008-05-14 10:30:28 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-21 21:47:46 -0400 |
commit | 57962f0b9d76487a660619f97c0aa811924274a0 (patch) | |
tree | d4696a45bcbdd52a139b3f6760a7d3995574aef6 /drivers/net/wireless/libertas/main.c | |
parent | bd9b448f4c0a514559bdae4ca18ca3e8cd999c6d (diff) |
libertas: reduce command retry time
[PATCH, take 2] libertas: reduce command retry time
In the normal case, an unsuccessful command would be retried for 10*5 seconds,
or 10*10 seconds in the worst case. This patch reduces this to 3*3 seconds,
or 3*10 seconds in the worst case.
I also reduced the time it takes to start a new command downloaded.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/main.c')
-rw-r--r-- | drivers/net/wireless/libertas/main.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/drivers/net/wireless/libertas/main.c b/drivers/net/wireless/libertas/main.c index 804da368416f..baafa44cfb30 100644 --- a/drivers/net/wireless/libertas/main.c +++ b/drivers/net/wireless/libertas/main.c | |||
@@ -782,9 +782,10 @@ static int lbs_thread(void *data) | |||
782 | if (priv->cmd_timed_out && priv->cur_cmd) { | 782 | if (priv->cmd_timed_out && priv->cur_cmd) { |
783 | struct cmd_ctrl_node *cmdnode = priv->cur_cmd; | 783 | struct cmd_ctrl_node *cmdnode = priv->cur_cmd; |
784 | 784 | ||
785 | if (++priv->nr_retries > 10) { | 785 | if (++priv->nr_retries > 3) { |
786 | lbs_pr_info("Excessive timeouts submitting command %x\n", | 786 | lbs_pr_info("Excessive timeouts submitting " |
787 | le16_to_cpu(cmdnode->cmdbuf->command)); | 787 | "command 0x%04x\n", |
788 | le16_to_cpu(cmdnode->cmdbuf->command)); | ||
788 | lbs_complete_command(priv, cmdnode, -ETIMEDOUT); | 789 | lbs_complete_command(priv, cmdnode, -ETIMEDOUT); |
789 | priv->nr_retries = 0; | 790 | priv->nr_retries = 0; |
790 | if (priv->reset_card) { | 791 | if (priv->reset_card) { |
@@ -794,8 +795,10 @@ static int lbs_thread(void *data) | |||
794 | } | 795 | } |
795 | } else { | 796 | } else { |
796 | priv->cur_cmd = NULL; | 797 | priv->cur_cmd = NULL; |
797 | lbs_pr_info("requeueing command %x due to timeout (#%d)\n", | 798 | lbs_pr_info("requeueing command 0x%04x due " |
798 | le16_to_cpu(cmdnode->cmdbuf->command), priv->nr_retries); | 799 | "to timeout (#%d)\n", |
800 | le16_to_cpu(cmdnode->cmdbuf->command), | ||
801 | priv->nr_retries); | ||
799 | 802 | ||
800 | /* Stick it back at the _top_ of the pending queue | 803 | /* Stick it back at the _top_ of the pending queue |
801 | for immediate resubmission */ | 804 | for immediate resubmission */ |
@@ -986,12 +989,11 @@ static void command_timer_fn(unsigned long data) | |||
986 | lbs_deb_enter(LBS_DEB_CMD); | 989 | lbs_deb_enter(LBS_DEB_CMD); |
987 | spin_lock_irqsave(&priv->driver_lock, flags); | 990 | spin_lock_irqsave(&priv->driver_lock, flags); |
988 | 991 | ||
989 | if (!priv->cur_cmd) { | 992 | if (!priv->cur_cmd) |
990 | lbs_pr_info("Command timer expired; no pending command\n"); | ||
991 | goto out; | 993 | goto out; |
992 | } | ||
993 | 994 | ||
994 | lbs_pr_info("Command %x timed out\n", le16_to_cpu(priv->cur_cmd->cmdbuf->command)); | 995 | lbs_pr_info("command 0x%04x timed out\n", |
996 | le16_to_cpu(priv->cur_cmd->cmdbuf->command)); | ||
995 | 997 | ||
996 | priv->cmd_timed_out = 1; | 998 | priv->cmd_timed_out = 1; |
997 | wake_up_interruptible(&priv->waitq); | 999 | wake_up_interruptible(&priv->waitq); |