From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 BAAC42E62D1; Thu, 19 Mar 2026 20:02:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773950569; cv=none; b=dunN+u0iTRweRPsfRuWvXCVMXmug3g+0Nf6b/28YTrDvaj8Vv9+HBIa7c04SOzP+KFdJ166v1Ud7Ssmu3c1P0jNM9hNrY6UHZV5s7D+b7gigj/sfzT7xLXyEK39nUrAxudAcsVs48PjsTxlazyo3mJaQ6wtSMpXEcD7ttNSFyiE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773950569; c=relaxed/simple; bh=w1ldj/8KOcFljXet43ZpLfzZtm1Cmavg2oBXxuBG9/g=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ojHVY5dX1onXY7CV+5qgDHEazXxrB8RfSMg2bCbjDFMTMlAS+Zp0fI1aWEVUuOzaFkAP8QOED7pkUTVFFt4EyuxUvB3SgHnDpQVeRv9I871Lc8qpaAL9XeRg2/FTMgcx7nk+oHqb7thvz4Z/SUpYpmqNA56bFtjLC7fPrnsk2cA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=p+SIy43b; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="p+SIy43b" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DB413C19424; Thu, 19 Mar 2026 20:02:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773950569; bh=w1ldj/8KOcFljXet43ZpLfzZtm1Cmavg2oBXxuBG9/g=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=p+SIy43bYXvanb436yLIo1g/eV+j4uYKwB1M+qhi07KdbtxLGOTtyLd+kQ1IDPXDM 1I0YVtMep1cxV+Y2a+r3m66lpeZitFADef6xZPYtuYqrvf/b8zJw49194Yxhuj2e/R hDZVQHyOs20sC9unZhTKSp7VNWIdLDSepAvIY00yuIH/4qYTfxSjHWMfUmh35Gdsg5 Civ6+/8oqEhoz+XYnnIobGab/cAzpyB1LIVqzaKI4z0EfzV6oYmg71d2jG+6yFLkah Q31ESYN9z69zhP7k0umgFUhLeqoT0grW3BjRzMl1VoRHs5aFvLEhXO7p32KOBhUba+ OZENJo+Nl45cw== Date: Thu, 19 Mar 2026 20:02:43 +0000 From: Simon Horman To: Joshua Washington Cc: netdev@vger.kernel.org, Harshitha Ramamurthy , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Alexei Starovoitov , Daniel Borkmann , Jesper Dangaard Brouer , John Fastabend , Stanislav Fomichev , Willem de Bruijn , Praveen Kaligineedi , Tim Hostetler , linux-kernel@vger.kernel.org, bpf@vger.kernel.org, Jordan Rhee Subject: Re: [PATCH net-next] gve: add XDP metadata support for DQ RDA Message-ID: <20260319200243.GU1753385@horms.kernel.org> References: <20260316230434.1398828-1-joshwash@google.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: On Tue, Mar 17, 2026 at 09:03:28AM -0500, Joshua Washington wrote: > Hello, the commit referenced here should have been > 1b42e07af1ee ("gve: Add Rx HWTS metadata to AF_XDP ZC mode"). I had > mistakenly drawn the hash from a different repo. I can respin this > change once others have reviewed it and left potential feedback. > > > On Mon, Mar 16, 2026 at 6:04 PM Joshua Washington wrote: > > > > Commit daa7ff1e1269 ("gve: Add Rx HWTS metadata to AF_XDP ZC mode") > > exposes support for the XDP RX timestamping metadata operation in the DQ > > RDA mode. While the operation works on its own, the intent was to enable > > XDP metadata support for the queue format as a whole along with it. > > Currently bfp_xdp_adjust_meta fails because meta_valid is set to false. If you respin, then s/bfp/bpf as suggested by AI generated code review. > > This change updates xdp_buff preparation to set meta_valid to true, so > > metadata can be fully used by XDP programs. > > > > Reviewed-by: Harshitha Ramamurthy > > Reviewed-by: Jordan Rhee > > Signed-off-by: Joshua Washington ...