From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mail.toke.dk (Postfix) with ESMTPS id AC09C9F5FFC for ; Fri, 17 Mar 2023 15:33:17 +0100 (CET) Authentication-Results: mail.toke.dk; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=Ao10SlTx DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1679063596; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=FGq8hRY38mG0oGag1o8GCpq4u2BKR4UVG2BtfYvnhxM=; b=Ao10SlTx5klY6Vw1K2pfb+wljslz6HaRgGJJgM+5B0vLn4K5hlpkUMlK/Rzo0vueDnBF33 0lUNwM9NKLo9rnrgjhEWnQLW/yeYyh6H6kPnzFj79+E8uFiwxupgriZJ/WxqxJtYIgOTVk BQwv/6LoQGgnxz13DGR6vMiyPGmHSPc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-472-YqaPIojxNCipCvb45uQ81Q-1; Fri, 17 Mar 2023 10:33:12 -0400 X-MC-Unique: YqaPIojxNCipCvb45uQ81Q-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 1467C889058; Fri, 17 Mar 2023 14:33:12 +0000 (UTC) Received: from firesoul.localdomain (unknown [10.45.242.23]) by smtp.corp.redhat.com (Postfix) with ESMTP id B593D2166B26; Fri, 17 Mar 2023 14:33:11 +0000 (UTC) Received: from [10.1.1.1] (localhost [IPv6:::1]) by firesoul.localdomain (Postfix) with ESMTP id B482730721A6C; Fri, 17 Mar 2023 15:33:10 +0100 (CET) From: Jesper Dangaard Brouer To: bpf@vger.kernel.org Date: Fri, 17 Mar 2023 15:33:10 +0100 Message-ID: <167906343576.2706833.17489167761084071890.stgit@firesoul> User-Agent: StGit/1.4 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 Message-ID-Hash: 4UVM5KXX3CLKIZMCVFTDEJOB744RAIVI X-Message-ID-Hash: 4UVM5KXX3CLKIZMCVFTDEJOB744RAIVI X-MailFrom: brouer@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Jesper Dangaard Brouer , netdev@vger.kernel.org, Stanislav Fomichev , martin.lau@kernel.org, ast@kernel.org, daniel@iogearbox.net, alexandr.lobakin@intel.com, larysa.zaremba@intel.com, xdp-hints@xdp-project.net, anthony.l.nguyen@intel.com, yoong.siang.song@intel.com, boon.leong.ong@intel.com X-Mailman-Version: 3.3.8 Precedence: list Subject: [xdp-hints] [PATCH bpf-next V1 0/7] XDP-hints kfuncs for Intel driver igc List-Id: XDP hardware hints design discussion Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Implemented XDP-hints metadata kfuncs for Intel driver igc. Primarily used the tool in tools/testing/selftests/bpf/ xdp_hw_metadata, when doing driver development of these features. Recommend other driver developers to do the same. In the process xdp_hw_metadata was updated to help assist development. I've documented my practical experience with igc and tool here[1]. [1] https://github.com/xdp-project/xdp-project/blob/master/areas/hints/xdp_hints_kfuncs02_driver_igc.org This patchset implement RX-hash as a simple u32 value (as this is the current kfunc API), but my experience with RX-hash is that we will also need to provide the Hash-type for this raw value to be useful to BPF-developers. This will be addressed in followup work once this patchset lands. --- Jesper Dangaard Brouer (7): xdp: bpf_xdp_metadata use EOPNOTSUPP for no driver support igc: enable and fix RX hash usage by netstack selftests/bpf: xdp_hw_metadata track more timestamps selftests/bpf: xdp_hw_metadata RX hash return code info igc: add igc_xdp_buff wrapper for xdp_buff in driver igc: add XDP hints kfuncs for RX timestamp igc: add XDP hints kfuncs for RX hash Documentation/networking/xdp-rx-metadata.rst | 7 +- drivers/net/ethernet/intel/igc/igc.h | 35 +++++++ drivers/net/ethernet/intel/igc/igc_main.c | 94 ++++++++++++++++--- drivers/net/ethernet/mellanox/mlx4/en_rx.c | 4 +- .../net/ethernet/mellanox/mlx5/core/en/xdp.c | 4 +- drivers/net/veth.c | 4 +- net/core/xdp.c | 10 +- .../selftests/bpf/progs/xdp_hw_metadata.c | 17 ++-- tools/testing/selftests/bpf/xdp_hw_metadata.c | 51 ++++++++-- tools/testing/selftests/bpf/xdp_metadata.h | 1 + 10 files changed, 194 insertions(+), 33 deletions(-) -- Best regards, Jesper Dangaard Brouer MSc.CS, Sr. Principal Kernel Engineer at Red Hat LinkedIn: http://www.linkedin.com/in/brouer