From: "Morten Brørup" <mb@smartsharesystems.com>
To: "Burakov, Anatoly" <anatoly.burakov@intel.com>,
"Vladimir Medvedkin" <vladimir.medvedkin@intel.com>,
"Bruce Richardson" <bruce.richardson@intel.com>
Cc: <dev@dpdk.org>, "David Marchand" <david.marchand@redhat.com>
Subject: RE: [PATCH v1 1/1] net/iavf: fix large VF IRQ mapping
Date: Fri, 22 May 2026 11:58:22 +0200 [thread overview]
Message-ID: <98CBD80474FA8B44BF855DF32C47DC35F65891@smartserver.smartshare.dk> (raw)
In-Reply-To: <8b0e6d7f-c7c1-4d0d-8b76-ea2f1fd6655c@intel.com>
> From: Burakov, Anatoly [mailto:anatoly.burakov@intel.com]
> Sent: Friday, 22 May 2026 11.46
>
> On 5/8/2026 11:16 AM, Morten Brørup wrote:
> >> From: Burakov, Anatoly [mailto:anatoly.burakov@intel.com]
> >> Sent: Thursday, 7 May 2026 10.09
> >>
> >> On 5/6/2026 5:58 PM, David Marchand wrote:
> >>> On Wed, 6 May 2026 at 16:07, Anatoly Burakov
> >> <anatoly.burakov@intel.com> wrote:
> >>>>
> >>>> The PF will check buffer size for being too big, and the chunk
> >> sizing code
> >>>> correctly calls that out. However, the size was actually still too
> >> big
> >>>> because `struct virtchnl_queue_vector_maps` already had one queue
> >> vector
> >>>> as part of its definition, so `chunk_sz` was too big by 1.
> >>>>
> >>>> Fixes: 292d3b781ac4 ("net/iavf: replace unnecessary hugepage
> memory
> >> allocations")
> >>>>
> >>>> Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
> >>>> ---
> >>>> drivers/net/intel/iavf/iavf_vchnl.c | 2 +-
> >>>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>>
> >>>> diff --git a/drivers/net/intel/iavf/iavf_vchnl.c
> >> b/drivers/net/intel/iavf/iavf_vchnl.c
> >>>> index c2f340db81..dd09b0fa61 100644
> >>>> --- a/drivers/net/intel/iavf/iavf_vchnl.c
> >>>> +++ b/drivers/net/intel/iavf/iavf_vchnl.c
> >>>> @@ -1528,7 +1528,7 @@ iavf_config_irq_map_lv_chunk(struct
> >> iavf_adapter *adapter,
> >>>>
> >>>> /* for some reason PF side checks for buffer being too
> big,
> >> so adjust it down */
> >>>
> >>> The comment above can be removed?
> >>
> >> No, it's still relevant, because it refers to the fact that we're
> >> adjusting the total length downwards as opposed to leaving it at max
> >> size.
> >>
> >>>
> >>>> buf_len = sizeof(struct virtchnl_queue_vector_maps) +
> >>>> - sizeof(struct virtchnl_queue_vector) * chunk_sz;
> >>>> + sizeof(struct virtchnl_queue_vector) * (chunk_sz
> -
> >> 1);
> >>>
> >>> - did you make sure you did not break compat with previous version
> of
> >>> Intel out of tree PF driver (since this concerns configuring "Large
> >>> VF")?
> >>
> >> The commit in question *did* break things with previous out of tree
> PF
> >> driver. This commit fixes the breakage introduced in that commit.
> The
> >> commit being fixed was a refactor, which specified size as N-1.
> >>
> >>>
> >>> - all those virtchnl list struct have the same elems[1] issue.
> >>> Kernel side did some cleanups some time ago, maybe time for DPDK to
> >> do
> >>> the same...?
> >>>
> >>
> >> Yes, it is indeed time to do the same, but not as part of this
> >> patchset,
> >> and not before the base driver code is updated to do the same. There
> is
> >> some background work happening on that front already, but there are
> a
> >> lot of dependencies and moving parts, so we can't just change this
> >> willy
> >> nilly.
> >
> > Is there a timeline for this fix?
> >
>
> No specific timeline, unfortunately.
The drivers were very recently updated to use memcpy() instead of rte_memcpy(), so now we can enable stringop-overflow warnings in rte_memcpy().
What really annoyed me was the need to disable these warnings in a general library function due to some drivers.
Since this problem has now been resolved, and the scope of the elems[1] problem has shrunk from system-wide to Intel drivers only, I'm not that concerned about timeline anymore. ;-)
-Morten
next prev parent reply other threads:[~2026-05-22 9:58 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-06 14:07 [PATCH v1 1/1] net/iavf: fix large VF IRQ mapping Anatoly Burakov
2026-05-06 15:58 ` David Marchand
2026-05-07 8:08 ` Burakov, Anatoly
2026-05-08 9:16 ` Morten Brørup
2026-05-22 9:45 ` Burakov, Anatoly
2026-05-22 9:58 ` Morten Brørup [this message]
2026-05-08 10:16 ` Morten Brørup
2026-05-19 15:20 ` Bruce Richardson
2026-05-19 16:12 ` Bruce Richardson
2026-05-22 14:34 ` Bruce Richardson
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=98CBD80474FA8B44BF855DF32C47DC35F65891@smartserver.smartshare.dk \
--to=mb@smartsharesystems.com \
--cc=anatoly.burakov@intel.com \
--cc=bruce.richardson@intel.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=vladimir.medvedkin@intel.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