[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230609115818-mutt-send-email-mst@kernel.org>
Date: Fri, 9 Jun 2023 11:58:34 -0400
From: "Michael S. Tsirkin" <mst@...hat.com>
To: Xianting Tian <xianting.tian@...ux.alibaba.com>
Cc: arei.gonglei@...wei.com, jasowang@...hat.com,
xuanzhuo@...ux.alibaba.com, herbert@...dor.apana.org.au,
davem@...emloft.net, amit@...nel.org, arnd@...db.de,
gregkh@...uxfoundation.org, marcel@...tmann.org,
johan.hedberg@...il.com, luiz.dentz@...il.com,
linux-bluetooth@...r.kernel.org,
virtualization@...ts.linux-foundation.org,
linux-crypto@...r.kernel.org, linux-kernel@...r.kernel.org,
Xianting Tian <tianxianting.txt@...baba-inc.com>
Subject: Re: [PATCH 1/3] virtio-crypto: fixup potential cpu stall when free
unused bufs
On Fri, Jun 09, 2023 at 09:18:15PM +0800, Xianting Tian wrote:
> From: Xianting Tian <tianxianting.txt@...baba-inc.com>
>
> Cpu stall issue may happen if device is configured with multi queues
> and large queue depth, so fix it.
>
> Signed-off-by: Xianting Tian <xianting.tian@...ux.alibaba.com>
include a Fixes tag?
> ---
> drivers/crypto/virtio/virtio_crypto_core.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/crypto/virtio/virtio_crypto_core.c b/drivers/crypto/virtio/virtio_crypto_core.c
> index 1198bd306365..94849fa3bd74 100644
> --- a/drivers/crypto/virtio/virtio_crypto_core.c
> +++ b/drivers/crypto/virtio/virtio_crypto_core.c
> @@ -480,6 +480,7 @@ static void virtcrypto_free_unused_reqs(struct virtio_crypto *vcrypto)
> kfree(vc_req->req_data);
> kfree(vc_req->sgs);
> }
> + cond_resched();
> }
> }
>
> --
> 2.17.1
Powered by blists - more mailing lists