public inbox for linux-wireless@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] wifi: mwifiex: decrease timeout waiting for host sleep from 10s to 5s
@ 2024-11-27 10:55 Pin-yen Lin
  2024-11-27 15:44 ` Doug Anderson
  2024-12-09 15:59 ` Kalle Valo
  0 siblings, 2 replies; 13+ messages in thread
From: Pin-yen Lin @ 2024-11-27 10:55 UTC (permalink / raw)
  To: Francesco Dolcini, Kalle Valo
  Cc: David Lin, Pin-yen Lin, Doug Anderson, linux-kernel,
	linux-wireless

In commit 52250cbee7f6 ("mwifiex: use timeout variant for
wait_event_interruptible") it was noted that sometimes we seemed
to miss the signal that our host sleep settings took effect. A
10 second timeout was added to the code to make sure we didn't
hang forever waiting. It appears that this problem still exists
and we hit the timeout sometimes for Chromebooks in the field.

Recently on ChromeOS we've started setting the DPM watchdog
to trip if full system suspend takes over 10 seconds. Given
the timeout in the original patch, obviously we're hitting
the DPM watchdog before mwifiex gets a chance to timeout.

While we could increase the DPM watchdog in ChromeOS to avoid
this problem, it's probably better to simply decrease the
timeout. Any time we're waiting several seconds for the
firmware to respond it's likely that the firmware won't ever
respond. With that in mind, decrease the timeout in mwifiex
from 10 seconds to 5 seconds.

Suggested-by: Doug Anderson <dianders@chromium.org>
Signed-off-by: Pin-yen Lin <treapking@chromium.org>
---

 drivers/net/wireless/marvell/mwifiex/sta_ioctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/marvell/mwifiex/sta_ioctl.c b/drivers/net/wireless/marvell/mwifiex/sta_ioctl.c
index e06a0622973e..f79589cafe57 100644
--- a/drivers/net/wireless/marvell/mwifiex/sta_ioctl.c
+++ b/drivers/net/wireless/marvell/mwifiex/sta_ioctl.c
@@ -545,7 +545,7 @@ int mwifiex_enable_hs(struct mwifiex_adapter *adapter)
 
 	if (wait_event_interruptible_timeout(adapter->hs_activate_wait_q,
 					     adapter->hs_activate_wait_q_woken,
-					     (10 * HZ)) <= 0) {
+					     (5 * HZ)) <= 0) {
 		mwifiex_dbg(adapter, ERROR,
 			    "hs_activate_wait_q terminated\n");
 		return false;
-- 
2.47.0.338.g60cca15819-goog


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-12-09 15:59 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-27 10:55 [PATCH] wifi: mwifiex: decrease timeout waiting for host sleep from 10s to 5s Pin-yen Lin
2024-11-27 15:44 ` Doug Anderson
     [not found]   ` <CA+ASDXPXiyga6mKLBacupCXa0wsBbXCrmq20RFo7T2eSF8kbzQ@mail.gmail.com>
2024-12-04  1:38     ` Doug Anderson
2024-12-04  2:04       ` Brian Norris
2024-12-04 13:45         ` Pin-yen Lin
2024-12-04 18:11           ` Doug Anderson
2024-12-05 13:46             ` Pin-yen Lin
2024-12-05 17:13               ` Doug Anderson
2024-12-06 11:21                 ` Pin-yen Lin
2024-12-06 16:09                   ` Doug Anderson
2024-12-04 19:26           ` Brian Norris
2024-12-04 17:56         ` Doug Anderson
2024-12-09 15:59 ` Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox