From: Ratheesh Kannoth <rkannoth@marvell.com>
To: <davem@davemloft.net>, <gakula@marvell.com>,
<linux-kernel@vger.kernel.org>, <netdev@vger.kernel.org>,
<sgoutham@marvell.com>
Cc: <andrew+netdev@lunn.ch>, <edumazet@google.com>, <kuba@kernel.org>,
<pabeni@redhat.com>
Subject: Re: [PATCH net] octeontx2: use GFP_ATOMIC for QMEM dma_alloc_attrs
Date: Mon, 24 Aug 2026 11:58:48 +0530 [thread overview]
Message-ID: <aovkoPmDb3rZXDTA@rkannoth-OptiPlex-7090> (raw)
In-Reply-To: <20260820085347.2672889-1-rkannoth@marvell.com>
On 2026-08-20 at 14:23:47, Ratheesh Kannoth (rkannoth@marvell.com) wrote:
> From: Sunil Goutham <sgoutham@marvell.com>
>
> Queue context memory for NIX/NPA and other qmem_alloc() users in the
> AF and NIC drivers is allocated via dma_alloc_attrs() with
> GFP_KERNEL. On platforms with CMA enabled, each attached interface can
> consume a large contiguous allocation from the CMA pool, making CMA
> sizing grow with the number of enabled interfaces.
>
> Use GFP_ATOMIC for the DMA backing allocation in qmem_alloc() to reduce
> pressure on the CMA pool when many interfaces are enabled.
>
> Fixes: 73d33dbc0723 ("octeontx2-af: Use DMA_ATTR_FORCE_CONTIGUOUS attribute in DMA alloc")
> Signed-off-by: Sunil Goutham <sgoutham@marvell.com>
> Signed-off-by: Ratheesh Kannoth <rkannoth@marvell.com>
> ---
> drivers/net/ethernet/marvell/octeontx2/af/common.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/marvell/octeontx2/af/common.h b/drivers/net/ethernet/marvell/octeontx2/af/common.h
> index 779413a383b7..ff5d66dd10f3 100644
> --- a/drivers/net/ethernet/marvell/octeontx2/af/common.h
> +++ b/drivers/net/ethernet/marvell/octeontx2/af/common.h
> @@ -61,7 +61,7 @@ static inline int qmem_alloc(struct device *dev, struct qmem **q,
> qmem->entry_sz = entry_sz;
> qmem->alloc_sz = (qsize * entry_sz) + OTX2_ALIGN;
> qmem->base = dma_alloc_attrs(dev, qmem->alloc_sz, &qmem->iova,
> - GFP_KERNEL, DMA_ATTR_FORCE_CONTIGUOUS);
> + GFP_ATOMIC, DMA_ATTR_FORCE_CONTIGUOUS);
> if (!qmem->base)
> return -ENOMEM;
>
> --
> 2.43.0
>
Will address sashiko comments in v2
pw-bot: changes-requested
prev parent reply other threads:[~2026-08-24 6:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-20 8:53 [PATCH net] octeontx2: use GFP_ATOMIC for QMEM dma_alloc_attrs Ratheesh Kannoth
2026-08-24 6:28 ` Ratheesh Kannoth [this message]
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=aovkoPmDb3rZXDTA@rkannoth-OptiPlex-7090 \
--to=rkannoth@marvell.com \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gakula@marvell.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sgoutham@marvell.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