Netdev List
 help / color / mirror / Atom feed
From: Mohsin Bashir <mohsin.bashr@gmail.com>
To: Willem de Bruijn <willemdebruijn.kernel@gmail.com>,
	netdev@vger.kernel.org
Cc: davem@davemloft.net, kuba@kernel.org, edumazet@google.com,
	pabeni@redhat.com, horms@kernel.org, andrew@lunn.ch,
	Willem de Bruijn <willemb@google.com>
Subject: Re: [PATCH net-next v2 0/7] hardware pacing offload
Date: Thu, 23 Jul 2026 07:12:51 -0700	[thread overview]
Message-ID: <dfb1615c-18b3-4d05-990a-7c4db3139524@gmail.com> (raw)
In-Reply-To: <20260722204454.3234605-1-willemdebruijn.kernel@gmail.com>



On 7/22/26 1:43 PM, Willem de Bruijn wrote:
> From: Willem de Bruijn <willemb@google.com>
> 
> Enable safe hardware pacing offload on a first device (idpf), plus support.
> 
> - Add ethtool 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 in the individual patches.

Hi Willem,
Thanks for this. It'll definitely be useful for other drivers with 
native device EDT support. I left a few minor comments on the individual 
patches.
> 
> v1: https://lore.kernel.org/netdev/20260706133433.3142805-1-willemdebruijn.kernel@gmail.com/
> 
> Willem de Bruijn (7):
>    net: ethtool: add hardware pacing offload support to rings
>    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
>    net: pktgen: add support for SO_TXTIME
> 
>   Documentation/netlink/specs/ethtool.yaml      |   6 +
>   .../networking/net_cachelines/net_device.rst  |   3 +-
>   .../net/ethernet/intel/idpf/idpf_ethtool.c    |   3 +-
>   drivers/net/ethernet/intel/idpf/idpf_lib.c    |   5 +
>   drivers/net/ethernet/intel/idpf/idpf_txrx.c   |  65 +++++++-
>   drivers/net/ethernet/intel/idpf/idpf_txrx.h   |   2 +
>   include/linux/ethtool.h                       |   6 +
>   include/linux/netdevice.h                     |   6 +-
>   .../uapi/linux/ethtool_netlink_generated.h    |   2 +
>   net/core/pktgen.c                             |  93 ++++++++++-
>   net/core/rtnetlink.c                          |   2 +-
>   net/ethtool/common.c                          |   3 +
>   net/ethtool/netlink.h                         |   2 +-
>   net/ethtool/rings.c                           |  30 +++-
>   net/sched/sch_fq.c                            |  21 ++-
>   tools/testing/selftests/drivers/net/settings  |   1 +
>   .../testing/selftests/drivers/net/so_txtime.c | 147 +++++++++++++-----
>   .../selftests/drivers/net/so_txtime.py        |  72 ++++++++-
>   18 files changed, 408 insertions(+), 61 deletions(-)
>   create mode 100644 tools/testing/selftests/drivers/net/settings
> 


      parent reply	other threads:[~2026-07-23 14:12 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-22 20:43 [PATCH net-next v2 0/7] hardware pacing offload Willem de Bruijn
2026-07-22 20:43 ` [PATCH net-next v2 1/7] net: ethtool: add hardware pacing offload support to rings Willem de Bruijn
2026-07-23 14:16   ` Mohsin Bashir
2026-07-23 21:29     ` Willem de Bruijn
2026-07-23 22:11       ` Mohsin Bashir
2026-07-22 20:43 ` [PATCH net-next v2 2/7] net_sched: sch_fq: clear past skb->tstamp if offloading pacing Willem de Bruijn
2026-07-22 20:43 ` [PATCH net-next v2 3/7] idpf: support pacing offload Willem de Bruijn
2026-07-23 14:32   ` Mohsin Bashir
2026-07-23 21:27     ` Willem de Bruijn
2026-07-22 20:43 ` [PATCH net-next v2 4/7] selftests: drv-net: refactor so_txtime errqueue handling Willem de Bruijn
2026-07-23 14:40   ` Mohsin Bashir
2026-07-22 20:43 ` [PATCH net-next v2 5/7] selftests: drv-net: in so_txtime tell apart sw from hw pacing Willem de Bruijn
2026-07-22 20:43 ` [PATCH net-next v2 6/7] selftests: drv-net: extend so_txtime with hw offload Willem de Bruijn
2026-07-22 20:43 ` [PATCH net-next v2 7/7] net: pktgen: add support for SO_TXTIME Willem de Bruijn
2026-07-23 14:12 ` Mohsin Bashir [this message]

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=dfb1615c-18b3-4d05-990a-7c4db3139524@gmail.com \
    --to=mohsin.bashr@gmail.com \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=horms@kernel.org \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=willemb@google.com \
    --cc=willemdebruijn.kernel@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox