All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: fengchengwen <fengchengwen@huawei.com>
Cc: Raghavendra Ningoji <raghavendra.ningoji@amd.com>, <dev@dpdk.org>,
	<david.marchand@redhat.com>, <bruce.richardson@intel.com>,
	<Selwin.Sebastian@amd.com>, <bhagyada.modali@amd.com>,
	<rjarry@redhat.com>, <thomas@monjalon.net>
Subject: Re: [PATCH v3 2/3] dma/ae4dma: add control path operations
Date: Sun, 28 Jun 2026 09:04:51 -0700	[thread overview]
Message-ID: <20260628090451.19970403@phoenix.local> (raw)
In-Reply-To: <6db5bccd-f82a-4a31-ab4c-b3addbcbcc94@huawei.com>

On Sat, 27 Jun 2026 08:09:09 +0800
fengchengwen <fengchengwen@huawei.com> wrote:

> >  
> > +static int
> > +ae4dma_dev_configure(struct rte_dma_dev *dev __rte_unused,
> > +		const struct rte_dma_conf *dev_conf,
> > +		uint32_t conf_sz)
> > +{
> > +	if (sizeof(struct rte_dma_conf) != conf_sz)
> > +		return -EINVAL;  
> 
> This may break ABI compatible

Ignore that suggestion. This is a reasonable way to handle new configuration
functions. You need/want a minimal set of values. If rte_dma_conf grows in size
then the code can add compatability; by requiring a minimum set of values
and then setting the rest to zero.

Something like

static int
ae4dma_dev_configure(struct rte_dma_dev *dev __rte_unused,
		const struct rte_dma_conf *dev_conf,
		size_t conf_sz)
{
	if (conf_sz < sizeof(struct orig_rte_dma_conf))
		return -EINVAL;

	struct rte_dma_conf conf;
	memcpy(&conf, dev_conf, RTE_MIN(conf_sz, sizeof(conf)));
        dev_conf = &conf;

Looking at rte_dma_conf the structure has holes and dmadev lib
doesn't validate undefined flags, so it already has future ABI problems.

  reply	other threads:[~2026-06-28 16:04 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-18 18:18 [PATCH] dma/ae4dma: add AMD AE4DMA DMA PMD Raghavendra Ningoji
2026-05-21 14:28 ` David Marchand
2026-05-25 18:42 ` [PATCH v2 0/3] " Raghavendra Ningoji
2026-05-25 18:42   ` [PATCH v2 1/3] dma/ae4dma: introduce " Raghavendra Ningoji
2026-06-22 12:06     ` David Marchand
2026-06-22 12:16       ` Bruce Richardson
2026-06-24  0:38       ` fengchengwen
2026-06-25 18:41       ` Raghavendra Ningoji
2026-06-22 12:26     ` David Marchand
2026-06-22 12:37       ` Bruce Richardson
2026-06-25 18:43       ` Raghavendra Ningoji
2026-05-25 18:42   ` [PATCH v2 2/3] dma/ae4dma: add control path operations Raghavendra Ningoji
2026-06-22 12:15     ` David Marchand
2026-06-25 18:42       ` Raghavendra Ningoji
2026-05-25 18:42   ` [PATCH v2 3/3] dma/ae4dma: add data " Raghavendra Ningoji
2026-06-22 12:25   ` [PATCH v2 0/3] dma/ae4dma: add AMD AE4DMA DMA PMD David Marchand
2026-06-25 18:47   ` [PATCH v3 " Raghavendra Ningoji
2026-06-25 18:47     ` [PATCH v3 1/3] dma/ae4dma: introduce " Raghavendra Ningoji
2026-06-27  0:01       ` fengchengwen
2026-06-25 18:47     ` [PATCH v3 2/3] dma/ae4dma: add control path operations Raghavendra Ningoji
2026-06-27  0:09       ` fengchengwen
2026-06-28 16:04         ` Stephen Hemminger [this message]
2026-06-29  0:36           ` fengchengwen
2026-06-25 18:47     ` [PATCH v3 3/3] dma/ae4dma: add data " Raghavendra Ningoji
2026-06-27  0:23       ` fengchengwen

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=20260628090451.19970403@phoenix.local \
    --to=stephen@networkplumber.org \
    --cc=Selwin.Sebastian@amd.com \
    --cc=bhagyada.modali@amd.com \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=fengchengwen@huawei.com \
    --cc=raghavendra.ningoji@amd.com \
    --cc=rjarry@redhat.com \
    --cc=thomas@monjalon.net \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.