From: Dave Jiang <dave.jiang@intel.com>
To: Koichiro Den <den@valinux.co.jp>, Jon Mason <jdmason@kudzu.us>,
Allen Hubbe <allenbh@gmail.com>
Cc: Frank Li <Frank.Li@kernel.org>,
Logan Gunthorpe <logang@deltatee.com>,
fuyuanli <fuyuanli0722@gmail.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Nicholas Bellinger <nab@linux-iscsi.org>,
Joey Zhang <joey.zhang@microchip.com>,
ntb@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 08/14] NTB: ntb_transport: Stop RX tasklet scheduling before freeing a queue
Date: Thu, 24 Sep 2026 08:49:34 -0700 [thread overview]
Message-ID: <f1cd3816-8933-4ad7-bff1-73c103dff533@intel.com> (raw)
In-Reply-To: <20260910040836.3792333-9-den@valinux.co.jp>
On 9/9/26 9:08 PM, Koichiro Den wrote:
> A caller can read qp->active before teardown clears it, then schedule
> the RX tasklet after tasklet_kill() returns. The MSI handler does not
> check active at all. Teardown also releases DMA channels before
> draining the tasklet.
>
> Protect active updates and the check-and-schedule sequence with
> rx_sched_lock, including the MSI path. Clear active under the lock,
> then drain the tasklet before releasing DMA channels or queue entries.
> QP link work is already disabled, so it cannot reactivate RX. Use a
> separate lock to avoid contention with RX list operations.
>
> Fixes: e902133162af ("ntb: stop tasklet from spinning forever during shutdown.")
> Cc: stable@vger.kernel.org
> Signed-off-by: Koichiro Den <den@valinux.co.jp>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
I do wonder at some point we should convert tasklet to threaded irq...
> ---
> Changes in v2:
> - No changes.
>
> drivers/ntb/ntb_transport.c | 50 +++++++++++++++++++++++--------------
> 1 file changed, 31 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c
> index e5599c7ca93f..45d4365becac 100644
> --- a/drivers/ntb/ntb_transport.c
> +++ b/drivers/ntb/ntb_transport.c
> @@ -179,6 +179,8 @@ struct ntb_transport_qp {
> unsigned int rx_max_frame;
> unsigned int rx_alloc_entry;
> dma_cookie_t last_cookie;
> + /* Protect active and RX tasklet scheduling. */
> + spinlock_t rx_sched_lock;
> struct tasklet_struct rxc_db_work;
>
> void (*event_handler)(void *data, int status);
> @@ -649,11 +651,26 @@ static int ntb_transport_setup_qp_mw(struct ntb_transport_ctx *nt,
> return 0;
> }
>
> +static void ntb_transport_set_qp_active(struct ntb_transport_qp *qp, bool active)
> +{
> + guard(spinlock_irqsave)(&qp->rx_sched_lock);
> +
> + qp->active = active;
> +}
> +
> +static void ntb_transport_schedule_rxc(struct ntb_transport_qp *qp)
> +{
> + guard(spinlock_irqsave)(&qp->rx_sched_lock);
> +
> + if (qp->active)
> + tasklet_schedule(&qp->rxc_db_work);
> +}
> +
> static irqreturn_t ntb_transport_isr(int irq, void *dev)
> {
> struct ntb_transport_qp *qp = dev;
>
> - tasklet_schedule(&qp->rxc_db_work);
> + ntb_transport_schedule_rxc(qp);
>
> return IRQ_HANDLED;
> }
> @@ -895,7 +912,7 @@ static int ntb_set_mw(struct ntb_transport_ctx *nt, int num_mw,
> static void ntb_qp_link_context_reset(struct ntb_transport_qp *qp)
> {
> qp->link_is_up = false;
> - qp->active = false;
> + ntb_transport_set_qp_active(qp, false);
>
> qp->tx_index = 0;
> qp->rx_index = 0;
> @@ -1159,13 +1176,12 @@ static void ntb_qp_link_work(struct work_struct *work)
> if (val & BIT(qp->qp_num)) {
> dev_info(&pdev->dev, "qp %d: Link Up\n", qp->qp_num);
> qp->link_is_up = true;
> - qp->active = true;
> + ntb_transport_set_qp_active(qp, true);
>
> if (qp->event_handler)
> qp->event_handler(qp->cb_data, qp->link_is_up);
>
> - if (qp->active)
> - tasklet_schedule(&qp->rxc_db_work);
> + ntb_transport_schedule_rxc(qp);
> } else {
> ntb_transport_schedule_qp_link(qp,
> msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT));
> @@ -1193,6 +1209,7 @@ static int ntb_transport_init_queue(struct ntb_transport_ctx *nt,
> qp->ndev = nt->ndev;
> qp->client_ready = false;
> qp->event_handler = NULL;
> + spin_lock_init(&qp->rx_sched_lock);
> ntb_qp_link_context_reset(qp);
>
> if (mw_num < qp_count % mw_count)
> @@ -1729,8 +1746,7 @@ static void ntb_transport_rxc_db(unsigned long data)
>
> if (i == qp->rx_max_entry) {
> /* there is more work to do */
> - if (qp->active)
> - tasklet_schedule(&qp->rxc_db_work);
> + ntb_transport_schedule_rxc(qp);
> } else if (ntb_db_read(qp->ndev) & BIT_ULL(qp->qp_num)) {
> /* the doorbell bit is set: clear it */
> ntb_db_clear(qp->ndev, BIT_ULL(qp->qp_num));
> @@ -1741,8 +1757,7 @@ static void ntb_transport_rxc_db(unsigned long data)
> * ntb_process_rxc and clearing the doorbell bit:
> * there might be some more work to do.
> */
> - if (qp->active)
> - tasklet_schedule(&qp->rxc_db_work);
> + ntb_transport_schedule_rxc(qp);
> }
> }
>
> @@ -2209,7 +2224,11 @@ void ntb_transport_free_queue(struct ntb_transport_qp *qp)
> disable_work_sync(&qp->link_cleanup);
> disable_delayed_work_sync(&qp->link_work);
> qp->link_is_up = false;
> - qp->active = false;
> + ntb_transport_set_qp_active(qp, false);
> +
> + qp_bit = BIT_ULL(qp->qp_num);
> + ntb_db_set_mask(qp->ndev, qp_bit);
> + tasklet_kill(&qp->rxc_db_work);
>
> if (qp->tx_offload_thread) {
> kthread_stop(qp->tx_offload_thread);
> @@ -2251,11 +2270,6 @@ void ntb_transport_free_queue(struct ntb_transport_qp *qp)
> dma_release_channel(chan);
> }
>
> - qp_bit = BIT_ULL(qp->qp_num);
> -
> - ntb_db_set_mask(qp->ndev, qp_bit);
> - tasklet_kill(&qp->rxc_db_work);
> -
> qp->cb_data = NULL;
> qp->rx_handler = NULL;
> qp->tx_handler = NULL;
> @@ -2350,8 +2364,7 @@ int ntb_transport_rx_enqueue(struct ntb_transport_qp *qp, void *cb, void *data,
>
> ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry, &qp->rx_pend_q);
>
> - if (qp->active)
> - tasklet_schedule(&qp->rxc_db_work);
> + ntb_transport_schedule_rxc(qp);
>
> return 0;
> }
> @@ -2548,8 +2561,7 @@ static void ntb_transport_doorbell_callback(void *data, int vector)
> qp_num = __ffs(db_bits);
> qp = &nt->qp_vec[qp_num];
>
> - if (qp->active)
> - tasklet_schedule(&qp->rxc_db_work);
> + ntb_transport_schedule_rxc(qp);
>
> db_bits &= ~BIT_ULL(qp_num);
> }
next prev parent reply other threads:[~2026-09-24 15:49 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-10 4:08 [PATCH v2 00/14] NTB: ntb_transport: Miscellaneous fixes Koichiro Den
2026-09-10 4:08 ` [PATCH v2 01/14] NTB: ntb_transport: Remove the device debugfs directory Koichiro Den
2026-09-10 18:41 ` Frank Li
2026-09-15 17:52 ` Logan Gunthorpe
2026-09-24 15:37 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 02/14] NTB: ntb_transport: Start TX offload thread after queue setup Koichiro Den
2026-09-11 16:13 ` Frank Li
2026-09-15 18:08 ` Logan Gunthorpe
2026-09-24 15:38 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 03/14] NTB: ntb_transport: Avoid deadlock when cancelling link work Koichiro Den
2026-09-11 16:21 ` Frank Li
2026-09-11 17:41 ` Koichiro Den
2026-09-15 18:19 ` Logan Gunthorpe
2026-09-10 4:08 ` [PATCH v2 04/14] NTB: ntb_transport: Publish link state after QP setup Koichiro Den
2026-09-11 16:39 ` Frank Li
2026-09-15 18:32 ` Logan Gunthorpe
2026-09-24 15:40 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 05/14] NTB: ntb_transport: Avoid losing QP link-up requests Koichiro Den
2026-09-11 16:53 ` Frank Li
2026-09-11 18:04 ` Koichiro Den
2026-09-11 18:21 ` Koichiro Den
2026-09-12 3:20 ` Frank Li
2026-09-12 14:52 ` Koichiro Den
2026-09-18 14:43 ` Dave Jiang
2026-09-19 13:08 ` Koichiro Den
2026-09-10 4:08 ` [PATCH v2 06/14] NTB: ntb_transport: Clear link state before QP cleanup Koichiro Den
2026-09-15 18:55 ` Logan Gunthorpe
2026-09-24 15:45 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 07/14] NTB: ntb_transport: Stop QP work before freeing a queue Koichiro Den
2026-09-15 19:59 ` Logan Gunthorpe
2026-09-10 4:08 ` [PATCH v2 08/14] NTB: ntb_transport: Stop RX tasklet scheduling " Koichiro Den
2026-09-18 15:28 ` Logan Gunthorpe
2026-09-24 15:49 ` Dave Jiang [this message]
2026-09-10 4:08 ` [PATCH v2 09/14] NTB: ntb_transport: Drain RX tasklets during link cleanup Koichiro Den
2026-09-18 15:41 ` Logan Gunthorpe
2026-09-24 15:51 ` Dave Jiang
2026-09-24 15:53 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 10/14] NTB: ntb_transport: Wait for RX completions before resetting a QP Koichiro Den
2026-09-18 17:21 ` Logan Gunthorpe
2026-09-24 15:54 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 11/14] NTB: ntb_transport: Prepare remote RX info accesses for MW teardown Koichiro Den
2026-09-18 18:04 ` Logan Gunthorpe
2026-09-24 15:56 ` Dave Jiang
2026-09-24 15:57 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 12/14] NTB: ntb_transport: Clear QP pointers when freeing an MW Koichiro Den
2026-09-18 18:16 ` Logan Gunthorpe
2026-09-24 15:59 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 13/14] NTB: ntb_transport: Abort link setup on QP MW allocation failure Koichiro Den
2026-09-18 18:17 ` Logan Gunthorpe
2026-09-24 16:00 ` Dave Jiang
2026-09-10 4:08 ` [PATCH v2 14/14] NTB: ntb_transport: Remove clients before freeing transport resources Koichiro Den
2026-09-18 18:19 ` Logan Gunthorpe
2026-09-24 16:02 ` Dave Jiang
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=f1cd3816-8933-4ad7-bff1-73c103dff533@intel.com \
--to=dave.jiang@intel.com \
--cc=Frank.Li@kernel.org \
--cc=allenbh@gmail.com \
--cc=den@valinux.co.jp \
--cc=fuyuanli0722@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=jdmason@kudzu.us \
--cc=joey.zhang@microchip.com \
--cc=linux-kernel@vger.kernel.org \
--cc=logang@deltatee.com \
--cc=nab@linux-iscsi.org \
--cc=ntb@lists.linux.dev \
/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
all inboxes | Powered by JetHome®