From: Eric Dumazet <eric.dumazet@gmail.com>
To: Steven Rostedt <rostedt@goodmis.org>,
LKML <linux-kernel@vger.kernel.org>
Cc: Marcel Holtmann <marcel@holtmann.org>,
Johan Hedberg <johan.hedberg@gmail.com>,
Luiz Augusto von Dentz <luiz.dentz@gmail.com>,
Ben Young Tae Kim <ytkim@qca.qualcomm.com>,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH] Bluetooth: hci_qca: Use del_timer_sync() before freeing
Date: Mon, 4 Apr 2022 17:22:00 -0700 [thread overview]
Message-ID: <97d1cc84-890c-3fcf-2efc-645633cd36b2@gmail.com> (raw)
In-Reply-To: <20220404182236.1caa174e@rorschach.local.home>
On 4/4/22 15:22, Steven Rostedt wrote:
> [ Resending due to cut and paste failure of email address ]
>
> From: Steven Rostedt (Google) <rostedt@goodmis.org>
>
> While looking at a crash report on a timer list being corrupted, which
> usually happens when a timer is freed while still active. This is
> commonly triggered by code calling del_timer() instead of
> del_timer_sync() just before freeing.
>
> One possible culprit is the hci_qca driver, which does exactly that.
>
> Cc: stable@vger.kernel.org
> Fixes: 0ff252c1976da ("Bluetooth: hciuart: Add support QCA chipset for
> UART") Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
> ---
> diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c
> index f6e91fb432a3..73a8c72b5aae 100644
> --- a/drivers/bluetooth/hci_qca.c
> +++ b/drivers/bluetooth/hci_qca.c
> @@ -696,8 +696,8 @@ static int qca_close(struct hci_uart *hu)
> skb_queue_purge(&qca->tx_wait_q);
> skb_queue_purge(&qca->txq);
> skb_queue_purge(&qca->rx_memdump_q);
> - del_timer(&qca->tx_idle_timer);
> - del_timer(&qca->wake_retrans_timer);
> + del_timer_sync(&qca->tx_idle_timer);
> + del_timer_sync(&qca->wake_retrans_timer);
It seems the wake_retrans_timer could be re-armed from a work queue.
So perhaps we need to make sure qca->workqueue is destroyed
before these del_timer_sync() calls ?
> destroy_workqueue(qca->workqueue);
ie move this destroy_workqueue() up ?
> qca->hu = NULL;
>
next prev parent reply other threads:[~2022-04-05 2:34 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-04 22:22 [PATCH] Bluetooth: hci_qca: Use del_timer_sync() before freeing Steven Rostedt
2022-04-05 0:22 ` Eric Dumazet [this message]
2022-04-05 1:07 ` Steven Rostedt
2022-04-06 15:39 ` Guenter Roeck
2022-04-06 15:46 ` Steven Rostedt
2022-04-06 16:36 ` Guenter Roeck
2022-04-06 16:46 ` Steven Rostedt
2022-04-06 22:29 ` Eric Dumazet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=97d1cc84-890c-3fcf-2efc-645633cd36b2@gmail.com \
--to=eric.dumazet@gmail.com \
--cc=johan.hedberg@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luiz.dentz@gmail.com \
--cc=marcel@holtmann.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
--cc=ytkim@qca.qualcomm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox