public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
From: "Burakov, Anatoly" <anatoly.burakov@intel.com>
To: Bruce Richardson <bruce.richardson@intel.com>, <dev@dpdk.org>
Cc: <stable@dpdk.org>, Jingjing Wu <jingjing.wu@intel.com>,
	Praveen Shetty <praveen.shetty@intel.com>,
	Xiaoyun Li <xiaoyun.li@intel.com>,
	Beilei Xing <beilei.xing@intel.com>,
	Junfeng Guo <junfengg@nvidia.com>
Subject: Re: [PATCH] net/idpf: handle Tx of mbuf segments larger than 16k
Date: Fri, 6 Mar 2026 15:03:27 +0100	[thread overview]
Message-ID: <02e2c11f-d280-48bb-bb6f-7c28bc3c89ac@intel.com> (raw)
In-Reply-To: <f46aa723-75a0-41dc-a063-d79420365b3a@intel.com>


> CodeRabbit picked up on something here, and I think it's worth 
> highlighting.
> 
> When we're splitting segments, we assign txe->mbuf to the first segment...
> 
> <snip>
> 
>> +                txe = &sw_ring[sw_id];
>> +                /* sub-descriptor slots do not own the mbuf */
>> +                txe->mbuf = NULL;
> 
> ...then set subsequent segments to NULL...
> 
>> +            }
>> -            /* Setup TX descriptor */
>> -            txd->buf_addr =
>> -                rte_cpu_to_le_64(rte_mbuf_data_iova(tx_pkt));
>> -            cmd_dtype |= IDPF_TX_DESC_DTYPE_FLEX_FLOW_SCHE;
>> +            /* Write the final (or only) descriptor for this segment */
>> +            txd = &txr[tx_id];
>> +            txd->buf_addr = rte_cpu_to_le_64(buf_dma_addr);
>>               txd->qw1.cmd_dtype = cmd_dtype;
>> -            txd->qw1.rxr_bufsize = tx_pkt->data_len;
>> +            txd->qw1.rxr_bufsize = slen;
>>               txd->qw1.compl_tag = sw_id;
> 
> ...and we're supposed to write the final descriptor here, but we've 
> stored the mbuf pointer in the *first* descriptor, not in the *last* 
> one, which means when this descriptor gets to processing completions, 
> the mbuf pointer of that descriptor will be NULL? Is that intended?

Actually, digging in, I don't see where we free mbufs at all in splitq 
path? Am I missing something here?

-- 
Thanks,
Anatoly

  reply	other threads:[~2026-03-06 14:03 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-03 15:00 [PATCH] net/idpf: handle Tx of mbuf segments larger than 16k Bruce Richardson
2026-03-04  9:53 ` Bruce Richardson
2026-03-06 13:45 ` Burakov, Anatoly
2026-03-06 14:03   ` Burakov, Anatoly [this message]
2026-03-06 14:16     ` Burakov, Anatoly

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=02e2c11f-d280-48bb-bb6f-7c28bc3c89ac@intel.com \
    --to=anatoly.burakov@intel.com \
    --cc=beilei.xing@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=jingjing.wu@intel.com \
    --cc=junfengg@nvidia.com \
    --cc=praveen.shetty@intel.com \
    --cc=stable@dpdk.org \
    --cc=xiaoyun.li@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