From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0EABD45CB7; Fri, 8 Nov 2024 22:17:46 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9FA2A4067C; Fri, 8 Nov 2024 22:17:45 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3FB4240263; Fri, 8 Nov 2024 22:17:44 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 52757212D511; Fri, 8 Nov 2024 13:17:43 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 52757212D511 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1731100663; bh=CT1Av3oC74CQzvaOnNFEEFVQjiUEa7QPEoF5b2oHsQI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=tCe/s+dfHevWygBPlKOhRnaOUVh52KiVBma9WSNt0GSAt9R842F4NqHG6H/GCfuRq ZRF6QqZ7cDrrQAyNx4YUppGRanwmUhLxBNCsrxpts9NNrmP5gCXQ/ThG7ZN2dFBkGQ 19DTyfWGuXdLUFSvDk6LrsqFvuiEQf9lHaSmHnQE= Date: Fri, 8 Nov 2024 13:17:43 -0800 From: Andre Muezerie To: Bruce Richardson Cc: dev@dpdk.org, Konstantin Ananyev , stable@dpdk.org Subject: Re: [PATCH v5 08/20] net/ice: remove use of VLAs for Windows built code Message-ID: <20241108211743.GA30715@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1713397319-26135-1-git-send-email-roretzla@linux.microsoft.com> <1731026691-1529-1-git-send-email-andremue@linux.microsoft.com> <1731026691-1529-9-git-send-email-andremue@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Fri, Nov 08, 2024 at 08:51:00AM +0000, Bruce Richardson wrote: > Title for this patch is incorrect. Does it belong merged with the next > patch in series? Indeed, I used the wrong title for this patch. I'll fix it in v6. > > On Thu, Nov 07, 2024 at 04:44:39PM -0800, Andre Muezerie wrote: > > From: Konstantin Ananyev > > > > gro_vxlan_tcp4_tbl_timeout_flush() is called without taking into account > > that first entries in pkts[] can be already occupied by > > un-processed packets. > > > > Fixes: 74080d7dcf31 ("gro: support IPv6 for TCP") > > Cc: stable@dpdk.org > > > > Signed-off-by: Konstantin Ananyev > > Acked-by: Ferruh Yigit > > --- > > lib/gro/rte_gro.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/lib/gro/rte_gro.c b/lib/gro/rte_gro.c > > index d824eebd93..db86117609 100644 > > --- a/lib/gro/rte_gro.c > > +++ b/lib/gro/rte_gro.c > > @@ -327,7 +327,7 @@ rte_gro_reassemble_burst(struct rte_mbuf **pkts, > > /* Flush all packets from the tables */ > > if (do_vxlan_tcp_gro) { > > i += gro_vxlan_tcp4_tbl_timeout_flush(&vxlan_tcp_tbl, > > - 0, pkts, nb_pkts); > > + 0, &pkts[i], nb_pkts - i); > > } > > > > if (do_vxlan_udp_gro) { > > -- > > 2.34.1 > >