From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta-64-225.siemens.flowmailer.net (mta-64-225.siemens.flowmailer.net [185.136.64.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C975E12F5A5 for ; Mon, 24 Feb 2025 14:26:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.136.64.225 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740407183; cv=none; b=iXJ7bfnk54Fg7lfV7v7B5x0rR1TwNr5P1qjrJixl2s2BeBud9+pl9BPy/dWgLjt3pMyGgnBF0wtnBnuOxNyneDe+QVVDo6JePRYVPMYnNAFk51PnIP3YqJ1QREEPueq8XtsiWFg/CjoDNQiwgqFyRmcvgy+SgLRdOzku/JKIYJU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740407183; c=relaxed/simple; bh=YJn3woxK99j/HYFR7SrHcTgr8jkuAijYmO7yf5S97V8=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=TSInytX1DGJBZg/VAl7f3ItMu5kiXz64eYXyIxgWUVnxH7fR2Ls6tJ01arjKJc/ibbfHhItXTVzLtAjRmCZ5HJdV7JiKC7iWw5VtPprr7BvLvZhswqnez7JulwkekNlnS6LsDMpOafh2AZSw0rw/e30ghXnD1iEw7Xxbml9ivDA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=siemens.com; spf=pass smtp.mailfrom=rts-flowmailer.siemens.com; dkim=pass (2048-bit key) header.d=siemens.com header.i=diogo.ivo@siemens.com header.b=SqKLFB7Y; arc=none smtp.client-ip=185.136.64.225 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=siemens.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=rts-flowmailer.siemens.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=siemens.com header.i=diogo.ivo@siemens.com header.b="SqKLFB7Y" Received: by mta-64-225.siemens.flowmailer.net with ESMTPSA id 20250224133516725dc7d1c1e062ca18 for ; Mon, 24 Feb 2025 15:26:17 +0100 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; s=fm1; d=siemens.com; i=diogo.ivo@siemens.com; h=Date:From:Subject:To:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:Cc:References:In-Reply-To; bh=R1EHSTzEQ92GkWe5nywbq1cueM9EbdwXB/DLHyzBjiE=; b=SqKLFB7YwFbWWuEhr1MCqeKYnEQSz2VXFg7KrCFXnKFuDZY7mSc5YJYSAjU1wQvwlMMJCt fNUnP2QSV6I9EUzxZMEvc5SC3itYYCVA322Y0yr0He0gd13YDjKUYKUVfBI9wU3Gar9Jmkd/ shcYOKByKL5tTG/tyK94Pr3Fe/6dmoIUIdMZWFabYfQPz2xhL4ksBMwnVwlTidc9jdC2M7Rc 5w1/rq+g/gke1Wu0E8PBPBaKrgDfjFls5heEdYK9QE1dialj0BEepPoRtGhqcZzfFiWN3lVu AVGC7tefTMsEt9u5fWy2SjZtn268N3cIykNwJOv4uwyE0uNaJniZiucg==; Message-ID: Date: Mon, 24 Feb 2025 13:35:14 +0000 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net-next v3 0/3] net: ti: icssg-prueth: Add native mode XDP support To: Meghana Malladi , rogerq@kernel.org, danishanwar@ti.com, pabeni@redhat.com, kuba@kernel.org, edumazet@google.com, davem@davemloft.net, andrew+netdev@lunn.ch Cc: bpf@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, u.kleine-koenig@baylibre.com, matthias.schiffer@ew.tq-group.com, dan.carpenter@linaro.org, schnelle@linux.ibm.com, glaroque@baylibre.com, macro@orcam.me.uk, john.fastabend@gmail.com, hawk@kernel.org, daniel@iogearbox.net, ast@kernel.org, srk@ti.com, Vignesh Raghavendra References: <20250224110102.1528552-1-m-malladi@ti.com> Content-Language: en-US From: Diogo Ivo In-Reply-To: <20250224110102.1528552-1-m-malladi@ti.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Flowmailer-Platform: Siemens Feedback-ID: 519:519-1328357:519-21489:flowmailer Hi Meghana, On 2/24/25 11:00 AM, Meghana Malladi wrote: > This series adds native XDP support using page_pool. > XDP zero copy support is not included in this patch series. > > Patch 1/3: Replaces skb with page pool for Rx buffer allocation > Patch 2/3: Adds prueth_swdata struct for SWDATA for all swdata cases > Patch 3/3: Introduces native mode XDP support > > v2: https://lore.kernel.org/all/20250210103352.541052-1-m-malladi@ti.com/ > Just wanted to let you know that while I don't have access to the SR1.0 devices at the moment I will have access to them later this week, so I will test these changes then. Best regards, Diogo