From: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
To: Willem de Bruijn <willemdebruijn.kernel@gmail.com>,
netdev@vger.kernel.org
Cc: intel-wired-lan@lists.osuosl.org, anthony.l.nguyen@intel.com,
joshua.a.hay@intel.com, przemyslaw.kitszel@intel.com,
Willem de Bruijn <willemb@google.com>
Subject: Re: [Intel-wired-lan] [PATCH net-next v4 0/6] hardware pacing offload
Date: Thu, 06 Aug 2026 21:18:37 -0400 [thread overview]
Message-ID: <willemdebruijn.kernel.c36ea46d8e97@gmail.com> (raw)
In-Reply-To: <20260806232913.4020403-1-willemdebruijn.kernel@gmail.com>
Willem de Bruijn wrote:
> From: Willem de Bruijn <willemb@google.com>
>
> Enable safe hardware pacing offload on a first device (idpf), plus support.
>
> - Add rtnetlink support for admin control over the device feature
> - Add device support to the idpf driver
>
> Besides the main feature, also
>
> - Small optimization to FQ offload: avoid unnecessary ktime_.._get().
> - Expand so_txtime drv-net test with hw offload testcases.
> - Expand pktgen with txtime feature.
>
> Details and detailed changelog in the individual patches.
>
> High level changes:
> v3 -> v4
> - Replace ethtool API with rtnetlink
> - Drop/defer pktgen patch: not essential
>
> NOTE: the idpf patch will have a minor merge conflict with commit
> "idpf: add missing cpu_to_le32 in idpf_tx_splitq_build_flow_desc"
> (https://lore.kernel.org/netdev/20260803210707.1912217-1-willemdebruijn.kernel@gmail.com/).
> I expect that this series will need another revision, at which point
> that fix will have made its way to net-next. There is also a fix to
> so_txtime.py outstanding, but that is structured so that these do not
> conflict.
>
> v3: https://lore.kernel.org/netdev/20260726202902.760552-1-willemdebruijn.kernel@gmail.com/
> v2: https://lore.kernel.org/netdev/20260722204454.3234605-1-willemdebruijn.kernel@gmail.com/
> v1: https://lore.kernel.org/netdev/20260706133433.3142805-1-willemdebruijn.kernel@gmail.com/
>
> Willem de Bruijn (6):
> net: rtnetlink: add pacing_offload_horizon attribute to net_device
> net_sched: sch_fq: clear past skb->tstamp if offloading pacing
> idpf: support pacing offload
> selftests: drv-net: refactor so_txtime errqueue handling
> selftests: drv-net: in so_txtime tell apart sw from hw pacing
> selftests: drv-net: extend so_txtime with hw offload
>
> Documentation/netlink/specs/rt-link.yaml | 6 +
> .../networking/net_cachelines/net_device.rst | 3 +-
> drivers/net/ethernet/intel/idpf/idpf.h | 1 +
> drivers/net/ethernet/intel/idpf/idpf_lib.c | 3 +
> drivers/net/ethernet/intel/idpf/idpf_txrx.c | 70 +++++++-
> drivers/net/ethernet/intel/idpf/idpf_txrx.h | 2 +
> .../net/ethernet/intel/idpf/idpf_virtchnl.c | 56 ++++++-
> drivers/net/ethernet/intel/idpf/virtchnl2.h | 10 ++
> include/linux/netdevice.h | 4 +-
> include/linux/skbuff.h | 17 +-
> include/uapi/linux/if_link.h | 1 +
> net/core/rtnetlink.c | 21 +++
> net/sched/sch_fq.c | 19 ++-
> .../testing/selftests/drivers/net/so_txtime.c | 157 +++++++++++++-----
> .../selftests/drivers/net/so_txtime.py | 75 ++++++++-
> 15 files changed, 385 insertions(+), 60 deletions(-)
This was intended to have a wider audience list. Will address in v5.
WARNING: multiple messages have this Message-ID (diff)
From: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
To: Willem de Bruijn <willemdebruijn.kernel@gmail.com>,
netdev@vger.kernel.org
Cc: intel-wired-lan@lists.osuosl.org, anthony.l.nguyen@intel.com,
joshua.a.hay@intel.com, przemyslaw.kitszel@intel.com,
Willem de Bruijn <willemb@google.com>
Subject: Re: [PATCH net-next v4 0/6] hardware pacing offload
Date: Thu, 06 Aug 2026 21:18:37 -0400 [thread overview]
Message-ID: <willemdebruijn.kernel.c36ea46d8e97@gmail.com> (raw)
In-Reply-To: <20260806232913.4020403-1-willemdebruijn.kernel@gmail.com>
Willem de Bruijn wrote:
> From: Willem de Bruijn <willemb@google.com>
>
> Enable safe hardware pacing offload on a first device (idpf), plus support.
>
> - Add rtnetlink support for admin control over the device feature
> - Add device support to the idpf driver
>
> Besides the main feature, also
>
> - Small optimization to FQ offload: avoid unnecessary ktime_.._get().
> - Expand so_txtime drv-net test with hw offload testcases.
> - Expand pktgen with txtime feature.
>
> Details and detailed changelog in the individual patches.
>
> High level changes:
> v3 -> v4
> - Replace ethtool API with rtnetlink
> - Drop/defer pktgen patch: not essential
>
> NOTE: the idpf patch will have a minor merge conflict with commit
> "idpf: add missing cpu_to_le32 in idpf_tx_splitq_build_flow_desc"
> (https://lore.kernel.org/netdev/20260803210707.1912217-1-willemdebruijn.kernel@gmail.com/).
> I expect that this series will need another revision, at which point
> that fix will have made its way to net-next. There is also a fix to
> so_txtime.py outstanding, but that is structured so that these do not
> conflict.
>
> v3: https://lore.kernel.org/netdev/20260726202902.760552-1-willemdebruijn.kernel@gmail.com/
> v2: https://lore.kernel.org/netdev/20260722204454.3234605-1-willemdebruijn.kernel@gmail.com/
> v1: https://lore.kernel.org/netdev/20260706133433.3142805-1-willemdebruijn.kernel@gmail.com/
>
> Willem de Bruijn (6):
> net: rtnetlink: add pacing_offload_horizon attribute to net_device
> net_sched: sch_fq: clear past skb->tstamp if offloading pacing
> idpf: support pacing offload
> selftests: drv-net: refactor so_txtime errqueue handling
> selftests: drv-net: in so_txtime tell apart sw from hw pacing
> selftests: drv-net: extend so_txtime with hw offload
>
> Documentation/netlink/specs/rt-link.yaml | 6 +
> .../networking/net_cachelines/net_device.rst | 3 +-
> drivers/net/ethernet/intel/idpf/idpf.h | 1 +
> drivers/net/ethernet/intel/idpf/idpf_lib.c | 3 +
> drivers/net/ethernet/intel/idpf/idpf_txrx.c | 70 +++++++-
> drivers/net/ethernet/intel/idpf/idpf_txrx.h | 2 +
> .../net/ethernet/intel/idpf/idpf_virtchnl.c | 56 ++++++-
> drivers/net/ethernet/intel/idpf/virtchnl2.h | 10 ++
> include/linux/netdevice.h | 4 +-
> include/linux/skbuff.h | 17 +-
> include/uapi/linux/if_link.h | 1 +
> net/core/rtnetlink.c | 21 +++
> net/sched/sch_fq.c | 19 ++-
> .../testing/selftests/drivers/net/so_txtime.c | 157 +++++++++++++-----
> .../selftests/drivers/net/so_txtime.py | 75 ++++++++-
> 15 files changed, 385 insertions(+), 60 deletions(-)
This was intended to have a wider audience list. Will address in v5.
next prev parent reply other threads:[~2026-08-07 1:18 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-06 23:25 [Intel-wired-lan] [PATCH net-next v4 0/6] hardware pacing offload Willem de Bruijn
2026-08-06 23:25 ` Willem de Bruijn
2026-08-06 23:25 ` [Intel-wired-lan] [PATCH net-next v4 1/6] net: rtnetlink: add pacing_offload_horizon attribute to net_device Willem de Bruijn
2026-08-06 23:25 ` Willem de Bruijn
2026-08-06 23:25 ` [Intel-wired-lan] [PATCH net-next v4 2/6] net_sched: sch_fq: clear past skb->tstamp if offloading pacing Willem de Bruijn
2026-08-06 23:25 ` Willem de Bruijn
2026-08-06 23:26 ` [Intel-wired-lan] [PATCH net-next v4 3/6] idpf: support pacing offload Willem de Bruijn
2026-08-06 23:26 ` Willem de Bruijn
2026-08-06 23:26 ` [Intel-wired-lan] [PATCH net-next v4 4/6] selftests: drv-net: refactor so_txtime errqueue handling Willem de Bruijn
2026-08-06 23:26 ` Willem de Bruijn
2026-08-06 23:26 ` [Intel-wired-lan] [PATCH net-next v4 5/6] selftests: drv-net: in so_txtime tell apart sw from hw pacing Willem de Bruijn
2026-08-06 23:26 ` Willem de Bruijn
2026-08-06 23:26 ` [Intel-wired-lan] [PATCH net-next v4 6/6] selftests: drv-net: extend so_txtime with hw offload Willem de Bruijn
2026-08-06 23:26 ` Willem de Bruijn
2026-08-07 1:18 ` Willem de Bruijn [this message]
2026-08-07 1:18 ` [PATCH net-next v4 0/6] hardware pacing offload Willem de Bruijn
2026-08-07 22:39 ` [Intel-wired-lan] " Jakub Kicinski
2026-08-07 22:39 ` Jakub Kicinski
2026-08-07 23:47 ` [Intel-wired-lan] " Willem de Bruijn
2026-08-07 23:47 ` Willem de Bruijn
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=willemdebruijn.kernel.c36ea46d8e97@gmail.com \
--to=willemdebruijn.kernel@gmail.com \
--cc=anthony.l.nguyen@intel.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=joshua.a.hay@intel.com \
--cc=netdev@vger.kernel.org \
--cc=przemyslaw.kitszel@intel.com \
--cc=willemb@google.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.