* [PATCH] bluetooth: hci_ath: Replace mdelay with msleep in ath_wakeup_ar3k
@ 2018-01-27 10:17 Jia-Ju Bai
2018-02-07 8:55 ` Marcel Holtmann
0 siblings, 1 reply; 2+ messages in thread
From: Jia-Ju Bai @ 2018-01-27 10:17 UTC (permalink / raw)
To: marcel, gustavo, johan.hedberg; +Cc: linux-bluetooth, linux-kernel, Jia-Ju Bai
ath_wakeup_ar3k() is never called from atomic context.
It is only called by ath_hci_uart_work() that is only called in
ath_open() via INIT_WORK().
All of the above functions do not enter atomic context along the way.
Despite never getting called from atomic context, ath_wakeup_ar3k() calls
mdelay() for busy wait.
That is not necessary and can be replaced with msleep to avoid busy wait.
This is found by a static analysis tool named DCNS written by myself.
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
---
drivers/bluetooth/hci_ath.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/bluetooth/hci_ath.c b/drivers/bluetooth/hci_ath.c
index 14ae7ee..d568fbd 100644
--- a/drivers/bluetooth/hci_ath.c
+++ b/drivers/bluetooth/hci_ath.c
@@ -71,12 +71,12 @@ static int ath_wakeup_ar3k(struct tty_struct *tty)
/* Clear RTS first */
tty->driver->ops->tiocmget(tty);
tty->driver->ops->tiocmset(tty, 0x00, TIOCM_RTS);
- mdelay(20);
+ msleep(20);
/* Set RTS, wake up board */
tty->driver->ops->tiocmget(tty);
tty->driver->ops->tiocmset(tty, TIOCM_RTS, 0x00);
- mdelay(20);
+ msleep(20);
status = tty->driver->ops->tiocmget(tty);
return status;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] bluetooth: hci_ath: Replace mdelay with msleep in ath_wakeup_ar3k
2018-01-27 10:17 [PATCH] bluetooth: hci_ath: Replace mdelay with msleep in ath_wakeup_ar3k Jia-Ju Bai
@ 2018-02-07 8:55 ` Marcel Holtmann
0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2018-02-07 8:55 UTC (permalink / raw)
To: Jia-Ju Bai
Cc: Gustavo F. Padovan, Johan Hedberg, linux-bluetooth, linux-kernel
Hi Jia-Ju,
> ath_wakeup_ar3k() is never called from atomic context.
>
> It is only called by ath_hci_uart_work() that is only called in
> ath_open() via INIT_WORK().
> All of the above functions do not enter atomic context along the way.
>
> Despite never getting called from atomic context, ath_wakeup_ar3k() calls
> mdelay() for busy wait.
> That is not necessary and can be replaced with msleep to avoid busy wait.
>
> This is found by a static analysis tool named DCNS written by myself.
>
> Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
> ---
> drivers/bluetooth/hci_ath.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
patch has been applied to bluetooth-next tree.
Regards
Marcel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-02-07 8:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-27 10:17 [PATCH] bluetooth: hci_ath: Replace mdelay with msleep in ath_wakeup_ar3k Jia-Ju Bai
2018-02-07 8:55 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).