All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] bonding: add software timestamping support
@ 2023-03-29  3:13 Hangbin Liu
  2023-03-29  3:36 ` Jay Vosburgh
  2023-03-29 10:27 ` Miroslav Lichvar
  0 siblings, 2 replies; 11+ messages in thread
From: Hangbin Liu @ 2023-03-29  3:13 UTC (permalink / raw)
  To: netdev
  Cc: Jay Vosburgh, David S . Miller, Jakub Kicinski, Jonathan Toppins,
	Paolo Abeni, Eric Dumazet, Miroslav Lichvar, Richard Cochran,
	Hangbin Liu

At present, bonding attempts to obtain the timestamp (ts) information of
the active slave. However, this feature is only available for mode 1, 5,
and 6. For other modes, bonding doesn't even provide support for software
timestamping. To address this issue, let's call ethtool_op_get_ts_info
when there is no primary active slave. This will enable the use of software
timestamping for the bonding interface.

Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
---
 drivers/net/bonding/bond_main.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 00646aa315c3..f0856bec59f5 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -5709,9 +5709,7 @@ static int bond_ethtool_get_ts_info(struct net_device *bond_dev,
 		}
 	}
 
-	info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
-				SOF_TIMESTAMPING_SOFTWARE;
-	info->phc_index = -1;
+	ret = ethtool_op_get_ts_info(bond_dev, info);
 
 out:
 	dev_put(real_dev);
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-29  3:13 [PATCH net-next] bonding: add software timestamping support Hangbin Liu
@ 2023-03-29  3:36 ` Jay Vosburgh
  2023-03-30  4:01   ` Hangbin Liu
  2023-03-29 10:27 ` Miroslav Lichvar
  1 sibling, 1 reply; 11+ messages in thread
From: Jay Vosburgh @ 2023-03-29  3:36 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: netdev, David S . Miller, Jakub Kicinski, Jonathan Toppins,
	Paolo Abeni, Eric Dumazet, Miroslav Lichvar, Richard Cochran

Hangbin Liu <liuhangbin@gmail.com> wrote:

>At present, bonding attempts to obtain the timestamp (ts) information of
>the active slave. However, this feature is only available for mode 1, 5,
>and 6. For other modes, bonding doesn't even provide support for software
>timestamping. To address this issue, let's call ethtool_op_get_ts_info
>when there is no primary active slave. This will enable the use of software
>timestamping for the bonding interface.

	If I'm reading the patch below correctly, the actual functional
change here is to additionally set SOF_TIMESTAMPING_TX_SOFTWARE in
so_timestamping for the active-backup, balance-tlb and balance-alb modes
(or whenever there's no active slave, but that's less interesting).  So,
this patch only changes the behavior with regards to transmit
timestamping, correct?

	I'm not objecting to the patch per se, but the description above
does not appear to correctly describe the change.

	-J

>Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
>---
> drivers/net/bonding/bond_main.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
>diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
>index 00646aa315c3..f0856bec59f5 100644
>--- a/drivers/net/bonding/bond_main.c
>+++ b/drivers/net/bonding/bond_main.c
>@@ -5709,9 +5709,7 @@ static int bond_ethtool_get_ts_info(struct net_device *bond_dev,
> 		}
> 	}
> 
>-	info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
>-				SOF_TIMESTAMPING_SOFTWARE;
>-	info->phc_index = -1;
>+	ret = ethtool_op_get_ts_info(bond_dev, info);
> 
> out:
> 	dev_put(real_dev);
>-- 
>2.38.1
>

---
	-Jay Vosburgh, jay.vosburgh@canonical.com

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-29  3:13 [PATCH net-next] bonding: add software timestamping support Hangbin Liu
  2023-03-29  3:36 ` Jay Vosburgh
@ 2023-03-29 10:27 ` Miroslav Lichvar
  2023-03-30  3:33   ` Hangbin Liu
  1 sibling, 1 reply; 11+ messages in thread
From: Miroslav Lichvar @ 2023-03-29 10:27 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: netdev, Jay Vosburgh, David S . Miller, Jakub Kicinski,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

On Wed, Mar 29, 2023 at 11:13:37AM +0800, Hangbin Liu wrote:
> At present, bonding attempts to obtain the timestamp (ts) information of
> the active slave. However, this feature is only available for mode 1, 5,
> and 6. For other modes, bonding doesn't even provide support for software
> timestamping. To address this issue, let's call ethtool_op_get_ts_info
> when there is no primary active slave. This will enable the use of software
> timestamping for the bonding interface.

Would it make sense to check if all devices in the bond support
SOF_TIMESTAMPING_TX_SOFTWARE before returning it for the bond?
Applications might expect that a SW TX timestamp will be always
provided if the capability is reported.

-- 
Miroslav Lichvar


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-29 10:27 ` Miroslav Lichvar
@ 2023-03-30  3:33   ` Hangbin Liu
  2023-03-30  4:07     ` Jakub Kicinski
  2023-03-30  4:12     ` Jay Vosburgh
  0 siblings, 2 replies; 11+ messages in thread
From: Hangbin Liu @ 2023-03-30  3:33 UTC (permalink / raw)
  To: Miroslav Lichvar
  Cc: netdev, Jay Vosburgh, David S . Miller, Jakub Kicinski,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

On Wed, Mar 29, 2023 at 12:27:11PM +0200, Miroslav Lichvar wrote:
> On Wed, Mar 29, 2023 at 11:13:37AM +0800, Hangbin Liu wrote:
> > At present, bonding attempts to obtain the timestamp (ts) information of
> > the active slave. However, this feature is only available for mode 1, 5,
> > and 6. For other modes, bonding doesn't even provide support for software
> > timestamping. To address this issue, let's call ethtool_op_get_ts_info
> > when there is no primary active slave. This will enable the use of software
> > timestamping for the bonding interface.
> 
> Would it make sense to check if all devices in the bond support
> SOF_TIMESTAMPING_TX_SOFTWARE before returning it for the bond?
> Applications might expect that a SW TX timestamp will be always
> provided if the capability is reported.

In my understanding this is a software feature, no need for hardware support.
In __sock_tx_timestamp() it will set skb tx_flags when we have
SOF_TIMESTAMPING_TX_SOFTWARE flag. Do I understand wrong?

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-29  3:36 ` Jay Vosburgh
@ 2023-03-30  4:01   ` Hangbin Liu
  2023-03-30  4:39     ` Jay Vosburgh
  0 siblings, 1 reply; 11+ messages in thread
From: Hangbin Liu @ 2023-03-30  4:01 UTC (permalink / raw)
  To: Jay Vosburgh
  Cc: netdev, David S . Miller, Jakub Kicinski, Jonathan Toppins,
	Paolo Abeni, Eric Dumazet, Miroslav Lichvar, Richard Cochran

On Tue, Mar 28, 2023 at 08:36:58PM -0700, Jay Vosburgh wrote:
> Hangbin Liu <liuhangbin@gmail.com> wrote:
> 
> >At present, bonding attempts to obtain the timestamp (ts) information of
> >the active slave. However, this feature is only available for mode 1, 5,
> >and 6. For other modes, bonding doesn't even provide support for software
> >timestamping. To address this issue, let's call ethtool_op_get_ts_info
> >when there is no primary active slave. This will enable the use of software
> >timestamping for the bonding interface.
> 
> 	If I'm reading the patch below correctly, the actual functional
> change here is to additionally set SOF_TIMESTAMPING_TX_SOFTWARE in
> so_timestamping for the active-backup, balance-tlb and balance-alb modes

No. In the description. I said for other modes, bonding doesn't even provide
support for software timestamping. So this patch is to address this issue.
i.e. add sw timestaming for all bonding modes.

For mode 1,5,6. We will try find the active slave and get it's ts info
directly. If there is no ops->get_ts_info, just use sw timestamping.

For other modes, use sw timestamping directly.

This is because some users want to use PTP over bond with other modes. e.g. LACP.
They are satisfied with just sw timestamping as it's difficult to support hw
timestamping for LACP bonding.

Before this patch, bond mode with 0, 2, 3, 4 only has software-receive.

# ethtool -T bond0
Time stamping parameters for bond0:
Capabilities:
        software-receive
        software-system-clock
PTP Hardware Clock: none
Hardware Transmit Timestamp Modes: none
Hardware Receive Filter Modes: none

# ptp4l -m -S -i bond0
ptp4l[66296.154]: interface 'bond0' does not support requested timestamping mode
failed to create a clock

After this patch:

# ethtool -T bond0
Time stamping parameters for bond0:
Capabilities:
        software-transmit
        software-receive
        software-system-clock
PTP Hardware Clock: none
Hardware Transmit Timestamp Modes: none
Hardware Receive Filter Modes: none

# ptp4l -m -S -i bond0
ptp4l[66952.474]: port 1: INITIALIZING to LISTENING on INIT_COMPLETE
ptp4l[66952.474]: port 0: INITIALIZING to LISTENING on INIT_COMPLETE
ptp4l[66952.474]: port 0: INITIALIZING to LISTENING on INIT_COMPLETE
ptp4l[66981.681]: port 1: LISTENING to MASTER on ANNOUNCE_RECEIPT_TIMEOUT_EXPIRES
ptp4l[66981.681]: selected local clock 007c50.fffe.70cdb6 as best master
ptp4l[66981.682]: port 1: assuming the grand master role

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-30  3:33   ` Hangbin Liu
@ 2023-03-30  4:07     ` Jakub Kicinski
  2023-03-30  4:12     ` Jay Vosburgh
  1 sibling, 0 replies; 11+ messages in thread
From: Jakub Kicinski @ 2023-03-30  4:07 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Miroslav Lichvar, netdev, Jay Vosburgh, David S . Miller,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

On Thu, 30 Mar 2023 11:33:43 +0800 Hangbin Liu wrote:
> On Wed, Mar 29, 2023 at 12:27:11PM +0200, Miroslav Lichvar wrote:
> > On Wed, Mar 29, 2023 at 11:13:37AM +0800, Hangbin Liu wrote:  
> > > At present, bonding attempts to obtain the timestamp (ts) information of
> > > the active slave. However, this feature is only available for mode 1, 5,
> > > and 6. For other modes, bonding doesn't even provide support for software
> > > timestamping. To address this issue, let's call ethtool_op_get_ts_info
> > > when there is no primary active slave. This will enable the use of software
> > > timestamping for the bonding interface.  
> > 
> > Would it make sense to check if all devices in the bond support
> > SOF_TIMESTAMPING_TX_SOFTWARE before returning it for the bond?
> > Applications might expect that a SW TX timestamp will be always
> > provided if the capability is reported.  
> 
> In my understanding this is a software feature, no need for hardware support.
> In __sock_tx_timestamp() it will set skb tx_flags when we have
> SOF_TIMESTAMPING_TX_SOFTWARE flag. Do I understand wrong?

Driver needs to call skb_tx_timestamp(), so unlike with Rx there's
something to do for the driver.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-30  3:33   ` Hangbin Liu
  2023-03-30  4:07     ` Jakub Kicinski
@ 2023-03-30  4:12     ` Jay Vosburgh
  2023-03-31  3:32       ` Hangbin Liu
  1 sibling, 1 reply; 11+ messages in thread
From: Jay Vosburgh @ 2023-03-30  4:12 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Miroslav Lichvar, netdev, David S . Miller, Jakub Kicinski,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

Hangbin Liu <liuhangbin@gmail.com> wrote:

>On Wed, Mar 29, 2023 at 12:27:11PM +0200, Miroslav Lichvar wrote:
>> On Wed, Mar 29, 2023 at 11:13:37AM +0800, Hangbin Liu wrote:
>> > At present, bonding attempts to obtain the timestamp (ts) information of
>> > the active slave. However, this feature is only available for mode 1, 5,
>> > and 6. For other modes, bonding doesn't even provide support for software
>> > timestamping. To address this issue, let's call ethtool_op_get_ts_info
>> > when there is no primary active slave. This will enable the use of software
>> > timestamping for the bonding interface.
>> 
>> Would it make sense to check if all devices in the bond support
>> SOF_TIMESTAMPING_TX_SOFTWARE before returning it for the bond?
>> Applications might expect that a SW TX timestamp will be always
>> provided if the capability is reported.
>
>In my understanding this is a software feature, no need for hardware support.
>In __sock_tx_timestamp() it will set skb tx_flags when we have
>SOF_TIMESTAMPING_TX_SOFTWARE flag. Do I understand wrong?

	Right, but the network device driver is required to call
skb_tx_timestamp() in order to record the actual timestamp for the
software timestamping case.

	Do all drivers that may be members of a bond return
SOF_TIMESTAMPING_TX_SOFTWARE to .get_ts_info and properly call
skb_tx_timestamp()?  I.e., is this something that needs to be checked,
or is it safe to assume it's always true?

	If I'm reading things correctly, the answer is no, as one
exception appears to be IPOIB, which doesn't define .get_ts_info that I
can find, and does not call skb_tx_timestamp() in ipoib_start_xmit().

	-J

---
	-Jay Vosburgh, jay.vosburgh@canonical.com

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-30  4:01   ` Hangbin Liu
@ 2023-03-30  4:39     ` Jay Vosburgh
  0 siblings, 0 replies; 11+ messages in thread
From: Jay Vosburgh @ 2023-03-30  4:39 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: netdev, David S . Miller, Jakub Kicinski, Jonathan Toppins,
	Paolo Abeni, Eric Dumazet, Miroslav Lichvar, Richard Cochran

Hangbin Liu <liuhangbin@gmail.com> wrote:

>On Tue, Mar 28, 2023 at 08:36:58PM -0700, Jay Vosburgh wrote:
>> Hangbin Liu <liuhangbin@gmail.com> wrote:
>> 
>> >At present, bonding attempts to obtain the timestamp (ts) information of
>> >the active slave. However, this feature is only available for mode 1, 5,
>> >and 6. For other modes, bonding doesn't even provide support for software
>> >timestamping. To address this issue, let's call ethtool_op_get_ts_info
>> >when there is no primary active slave. This will enable the use of software
>> >timestamping for the bonding interface.
>> 
>> 	If I'm reading the patch below correctly, the actual functional
>> change here is to additionally set SOF_TIMESTAMPING_TX_SOFTWARE in
>> so_timestamping for the active-backup, balance-tlb and balance-alb modes
>
>No. In the description. I said for other modes, bonding doesn't even provide
>support for software timestamping. So this patch is to address this issue.
>i.e. add sw timestaming for all bonding modes.

	Ok, I think I follow now.  It is still adding only TX software
timestamping, as (from your example below) RX was already available.

	So, I do think the patch description is imprecise in saying,
"For other modes, bonding doesn't even provide support for software
timestamping" as this really refers to specifically TX timestamping.

	-J

>For mode 1,5,6. We will try find the active slave and get it's ts info
>directly. If there is no ops->get_ts_info, just use sw timestamping.
>
>For other modes, use sw timestamping directly.
>
>This is because some users want to use PTP over bond with other modes. e.g. LACP.
>They are satisfied with just sw timestamping as it's difficult to support hw
>timestamping for LACP bonding.
>
>Before this patch, bond mode with 0, 2, 3, 4 only has software-receive.
>
># ethtool -T bond0
>Time stamping parameters for bond0:
>Capabilities:
>        software-receive
>        software-system-clock
>PTP Hardware Clock: none
>Hardware Transmit Timestamp Modes: none
>Hardware Receive Filter Modes: none
>
># ptp4l -m -S -i bond0
>ptp4l[66296.154]: interface 'bond0' does not support requested timestamping mode
>failed to create a clock
>
>After this patch:
>
># ethtool -T bond0
>Time stamping parameters for bond0:
>Capabilities:
>        software-transmit
>        software-receive
>        software-system-clock
>PTP Hardware Clock: none
>Hardware Transmit Timestamp Modes: none
>Hardware Receive Filter Modes: none
>
># ptp4l -m -S -i bond0
>ptp4l[66952.474]: port 1: INITIALIZING to LISTENING on INIT_COMPLETE
>ptp4l[66952.474]: port 0: INITIALIZING to LISTENING on INIT_COMPLETE
>ptp4l[66952.474]: port 0: INITIALIZING to LISTENING on INIT_COMPLETE
>ptp4l[66981.681]: port 1: LISTENING to MASTER on ANNOUNCE_RECEIPT_TIMEOUT_EXPIRES
>ptp4l[66981.681]: selected local clock 007c50.fffe.70cdb6 as best master
>ptp4l[66981.682]: port 1: assuming the grand master role
>
>Thanks
>Hangbin

---
	-Jay Vosburgh, jay.vosburgh@canonical.com

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-30  4:12     ` Jay Vosburgh
@ 2023-03-31  3:32       ` Hangbin Liu
  2023-04-03 10:18         ` Miroslav Lichvar
  0 siblings, 1 reply; 11+ messages in thread
From: Hangbin Liu @ 2023-03-31  3:32 UTC (permalink / raw)
  To: Jay Vosburgh
  Cc: Miroslav Lichvar, netdev, David S . Miller, Jakub Kicinski,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

On Wed, Mar 29, 2023 at 09:12:44PM -0700, Jay Vosburgh wrote:
> >> Would it make sense to check if all devices in the bond support
> >> SOF_TIMESTAMPING_TX_SOFTWARE before returning it for the bond?
> >> Applications might expect that a SW TX timestamp will be always
> >> provided if the capability is reported.
> >
> >In my understanding this is a software feature, no need for hardware support.
> >In __sock_tx_timestamp() it will set skb tx_flags when we have
> >SOF_TIMESTAMPING_TX_SOFTWARE flag. Do I understand wrong?
> 
> 	Right, but the network device driver is required to call
> skb_tx_timestamp() in order to record the actual timestamp for the
> software timestamping case.
> 
> 	Do all drivers that may be members of a bond return
> SOF_TIMESTAMPING_TX_SOFTWARE to .get_ts_info and properly call
> skb_tx_timestamp()?  I.e., is this something that needs to be checked,
> or is it safe to assume it's always true?
> 
> 	If I'm reading things correctly, the answer is no, as one
> exception appears to be IPOIB, which doesn't define .get_ts_info that I
> CAN Find, and does not call skb_tx_timestamp() in ipoib_start_xmit().

Oh.. I thought it's a software timestamp and all driver's should support it.
I didn't expect that Infiniband doesn't support it. Based on this, it seems
we can't even assume that all Ethernet drivers will support it, since a
private driver may also not call skb_tx_timestamp() during transmit. Even if
we check the slaves during ioctl call, we can't expect a later-joined slave
to have SW TX timestamp support. It seems that we'll have to drop this feature."

Thanks
Hangbin

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-03-31  3:32       ` Hangbin Liu
@ 2023-04-03 10:18         ` Miroslav Lichvar
  2023-04-05  9:04           ` Hangbin Liu
  0 siblings, 1 reply; 11+ messages in thread
From: Miroslav Lichvar @ 2023-04-03 10:18 UTC (permalink / raw)
  To: Hangbin Liu
  Cc: Jay Vosburgh, netdev, David S . Miller, Jakub Kicinski,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

On Fri, Mar 31, 2023 at 11:32:03AM +0800, Hangbin Liu wrote:
> On Wed, Mar 29, 2023 at 09:12:44PM -0700, Jay Vosburgh wrote:
> > 	If I'm reading things correctly, the answer is no, as one
> > exception appears to be IPOIB, which doesn't define .get_ts_info that I
> > CAN Find, and does not call skb_tx_timestamp() in ipoib_start_xmit().
> 
> Oh.. I thought it's a software timestamp and all driver's should support it.
> I didn't expect that Infiniband doesn't support it. Based on this, it seems
> we can't even assume that all Ethernet drivers will support it, since a
> private driver may also not call skb_tx_timestamp() during transmit. Even if
> we check the slaves during ioctl call, we can't expect a later-joined slave
> to have SW TX timestamp support. It seems that we'll have to drop this feature."

I'd not see that as a problem. At the time of the ioctl call the
information is valid. I think knowing that some timestamps will be
missing due to an interface not supporting the feature is a different
case than the admin later adding a new interface to the bond and
breaking the condition. The application likely already have some
expectations after it starts and configures timestamping, e.g. that
the RX filter is not changed or TX timestamping disabled.

-- 
Miroslav Lichvar


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH net-next] bonding: add software timestamping support
  2023-04-03 10:18         ` Miroslav Lichvar
@ 2023-04-05  9:04           ` Hangbin Liu
  0 siblings, 0 replies; 11+ messages in thread
From: Hangbin Liu @ 2023-04-05  9:04 UTC (permalink / raw)
  To: Miroslav Lichvar
  Cc: Jay Vosburgh, netdev, David S . Miller, Jakub Kicinski,
	Jonathan Toppins, Paolo Abeni, Eric Dumazet, Richard Cochran

On Mon, Apr 03, 2023 at 12:18:03PM +0200, Miroslav Lichvar wrote:
> > Oh.. I thought it's a software timestamp and all driver's should support it.
> > I didn't expect that Infiniband doesn't support it. Based on this, it seems
> > we can't even assume that all Ethernet drivers will support it, since a
> > private driver may also not call skb_tx_timestamp() during transmit. Even if
> > we check the slaves during ioctl call, we can't expect a later-joined slave
> > to have SW TX timestamp support. It seems that we'll have to drop this feature."
> 
> I'd not see that as a problem. At the time of the ioctl call the
> information is valid. I think knowing that some timestamps will be
> missing due to an interface not supporting the feature is a different
> case than the admin later adding a new interface to the bond and
> breaking the condition. The application likely already have some
> expectations after it starts and configures timestamping, e.g. that
> the RX filter is not changed or TX timestamping disabled.

Thanks, this makes sense to me. I will try this way and post the new patch.

Hangbin

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2023-04-05  9:04 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-29  3:13 [PATCH net-next] bonding: add software timestamping support Hangbin Liu
2023-03-29  3:36 ` Jay Vosburgh
2023-03-30  4:01   ` Hangbin Liu
2023-03-30  4:39     ` Jay Vosburgh
2023-03-29 10:27 ` Miroslav Lichvar
2023-03-30  3:33   ` Hangbin Liu
2023-03-30  4:07     ` Jakub Kicinski
2023-03-30  4:12     ` Jay Vosburgh
2023-03-31  3:32       ` Hangbin Liu
2023-04-03 10:18         ` Miroslav Lichvar
2023-04-05  9:04           ` Hangbin Liu

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.