linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: =?utf-8?q?K=C3=B6ry_Maincent_=3Ckory=2Emaincent=40bootlin=2Ecom=3E?=@ci.codeaurora.org
Cc: florian.fainelli@broadcom.com,
	bcm-kernel-feedback-list@broadcom.com, andrew@lunn.ch,
	hkallweit1@gmail.com, linux@armlinux.org.uk, davem@davemloft.net,
	edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
	richardcochran@gmail.com, radu-nicolae.pirea@oss.nxp.com,
	j.vosburgh@gmail.com, andy@greyhouse.net,
	nicolas.ferre@microchip.com, claudiu.beznea@tuxon.dev,
	willemdebruijn.kernel@gmail.com, corbet@lwn.net,
	horatiu.vultur@microchip.com, UNGLinuxDriver@microchip.com,
	horms@kernel.org, vladimir.oltean@nxp.com,
	thomas.petazzoni@bootlin.com, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org,
	maxime.chevallier@bootlin.com, jay.vosburgh@canonical.com
Subject: Re: [PATCH net-next v7 00/16] net: Make timestamping selectable
Date: Sat, 18 Nov 2023 15:10:26 +0000	[thread overview]
Message-ID: <170032022683.7145.6992267439143242783.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231114-feature_ptp_netnext-v7-0-472e77951e40@bootlin.com>

Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Tue, 14 Nov 2023 12:28:28 +0100 you wrote:
> Up until now, there was no way to let the user select the layer at
> which time stamping occurs. The stack assumed that PHY time stamping
> is always preferred, but some MAC/PHY combinations were buggy.
> 
> This series updates the default MAC/PHY default timestamping and aims to
> allow the user to select the desired layer administratively.
> 
> [...]

Here is the summary with links:
  - [net-next,v7,01/16] net: Convert PHYs hwtstamp callback to use kernel_hwtstamp_config
    https://git.kernel.org/netdev/net-next/c/446e2305827b
  - [net-next,v7,02/16] net: phy: Remove the call to phy_mii_ioctl in phy_hwstamp_get/set
    https://git.kernel.org/netdev/net-next/c/430dc3256d57
  - [net-next,v7,03/16] net: ethtool: Refactor identical get_ts_info implementations.
    https://git.kernel.org/netdev/net-next/c/b8768dc40777
  - [net-next,v7,04/16] net: macb: Convert to ndo_hwtstamp_get() and ndo_hwtstamp_set()
    https://git.kernel.org/netdev/net-next/c/202cb220026e
  - [net-next,v7,05/16] net: Make dev_set_hwtstamp_phylib accessible
    https://git.kernel.org/netdev/net-next/c/011dd3b3f83f
  - [net-next,v7,06/16] net: phy: micrel: fix ts_info value in case of no phc
    https://git.kernel.org/netdev/net-next/c/915d25a9d69b
  - [net-next,v7,07/16] net_tstamp: Add TIMESTAMPING SOFTWARE and HARDWARE mask
    https://git.kernel.org/netdev/net-next/c/acec05fb78ab
  - [net-next,v7,08/16] net: ethtool: Add a command to expose current time stamping layer
    https://git.kernel.org/netdev/net-next/c/11d55be06df0
  - [net-next,v7,09/16] netlink: specs: Introduce new netlink command to get current timestamp
    https://git.kernel.org/netdev/net-next/c/bb8645b00ced
  - [net-next,v7,10/16] net: ethtool: Add a command to list available time stamping layers
    https://git.kernel.org/netdev/net-next/c/d905f9c75329
  - [net-next,v7,11/16] netlink: specs: Introduce new netlink command to list available time stamping layers
    https://git.kernel.org/netdev/net-next/c/aed5004ee7a0
  - [net-next,v7,12/16] net: Replace hwtstamp_source by timestamping layer
    https://git.kernel.org/netdev/net-next/c/51bdf3165f01
  - [net-next,v7,13/16] net: Change the API of PHY default timestamp to MAC
    https://git.kernel.org/netdev/net-next/c/0f7f463d4821
  - [net-next,v7,14/16] net: ethtool: ts: Update GET_TS to reply the current selected timestamp
    https://git.kernel.org/netdev/net-next/c/091fab122869
  - [net-next,v7,15/16] net: ethtool: ts: Let the active time stamping layer be selectable
    https://git.kernel.org/netdev/net-next/c/152c75e1d002
  - [net-next,v7,16/16] netlink: specs: Introduce time stamping set command
    https://git.kernel.org/netdev/net-next/c/ee60ea6be0d3

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



  parent reply	other threads:[~2023-11-18 15:10 UTC|newest]

Thread overview: 79+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-14 11:28 [PATCH net-next v7 00/16] net: Make timestamping selectable Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 01/16] net: Convert PHYs hwtstamp callback to use kernel_hwtstamp_config Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 02/16] net: phy: Remove the call to phy_mii_ioctl in phy_hwstamp_get/set Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 03/16] net: ethtool: Refactor identical get_ts_info implementations Köry Maincent
2023-11-14 11:28 ` [PATCH net-next v7 04/16] net: macb: Convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 05/16] net: Make dev_set_hwtstamp_phylib accessible Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 06/16] net: phy: micrel: fix ts_info value in case of no phc Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 07/16] net_tstamp: Add TIMESTAMPING SOFTWARE and HARDWARE mask Kory Maincent
2023-11-14 15:52   ` Willem de Bruijn
2023-11-19  2:22   ` Jakub Kicinski
2023-11-20  9:05     ` Köry Maincent
2023-11-20 16:48       ` Jakub Kicinski
2023-11-20 16:51         ` Willem de Bruijn
2023-11-14 11:28 ` [PATCH net-next v7 08/16] net: ethtool: Add a command to expose current time stamping layer Kory Maincent
2023-11-19  2:24   ` Jakub Kicinski
2023-11-20  9:17     ` Köry Maincent
2023-11-20 10:40       ` Köry Maincent
2023-11-14 11:28 ` [PATCH net-next v7 09/16] netlink: specs: Introduce new netlink command to get current timestamp Kory Maincent
2023-11-19  2:25   ` Jakub Kicinski
2023-11-14 11:28 ` [PATCH net-next v7 10/16] net: ethtool: Add a command to list available time stamping layers Kory Maincent
2023-11-19  2:26   ` Jakub Kicinski
2023-11-14 11:28 ` [PATCH net-next v7 11/16] netlink: specs: Introduce new netlink " Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 12/16] net: Replace hwtstamp_source by timestamping layer Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 13/16] net: Change the API of PHY default timestamp to MAC Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 14/16] net: ethtool: ts: Update GET_TS to reply the current selected timestamp Kory Maincent
2023-11-14 11:28 ` [PATCH net-next v7 15/16] net: ethtool: ts: Let the active time stamping layer be selectable Kory Maincent
2023-11-19  2:34   ` Jakub Kicinski
2023-11-20  9:44     ` Köry Maincent
2023-11-20 10:52       ` Vladimir Oltean
2023-11-20 11:14         ` Köry Maincent
2023-11-20 12:06           ` Vladimir Oltean
2023-11-20 13:49             ` Köry Maincent
2023-11-20 14:23               ` Vladimir Oltean
2023-11-20 14:53                 ` Köry Maincent
2023-11-20 16:10                   ` Vladimir Oltean
2023-11-20 17:17                     ` Köry Maincent
2023-11-20 17:37                 ` Jakub Kicinski
2023-11-20 18:39                   ` Andrew Lunn
2023-11-20 18:51                     ` Jakub Kicinski
2023-11-20 19:58                       ` Vladimir Oltean
2023-11-20 21:45                         ` Jakub Kicinski
2023-11-29 20:09                           ` Köry Maincent
2023-11-29 20:37                             ` Vladimir Oltean
2023-11-29 22:00                               ` Köry Maincent
2023-11-29 23:56                                 ` Jakub Kicinski
2023-11-30  0:06                                   ` Rahul Rameshbabu
2023-11-20 19:09                     ` Russell King (Oracle)
2023-11-20 19:00                   ` Vladimir Oltean
2023-11-20 19:58                     ` Jakub Kicinski
2023-11-20 21:17                       ` Vladimir Oltean
2023-11-20 21:37                         ` Jakub Kicinski
2023-11-20 22:05                           ` Vladimir Oltean
2023-11-21 17:31                             ` Köry Maincent
2023-11-21 17:43                               ` Jakub Kicinski
2023-11-22 13:44                                 ` Köry Maincent
2023-11-22 14:08                                   ` Vladimir Oltean
2023-11-22 14:19                                     ` Vladimir Oltean
2023-11-22 14:36                                     ` Vladimir Oltean
2023-11-22 16:54                                       ` Jakub Kicinski
2023-11-22 16:59                                         ` Vladimir Oltean
2023-11-22 17:55                                           ` Jakub Kicinski
2023-11-22 18:11                                             ` Willem de Bruijn
2023-11-24 17:27                                               ` Vladimir Oltean
2023-11-24 19:45                                                 ` Willem de Bruijn
2023-11-25 19:41                                                   ` Richard Cochran
2023-11-22 14:57                                     ` Köry Maincent
2023-11-22 16:50                                     ` Jakub Kicinski
2023-11-22 16:55                                       ` Vladimir Oltean
2023-11-22 18:01                                         ` Jakub Kicinski
2023-11-23 15:00                                           ` Köry Maincent
2023-11-23 17:32                                             ` Jakub Kicinski
2023-11-24 15:43                                               ` Vladimir Oltean
2023-11-24 17:34                                                 ` Köry Maincent
2023-11-24 19:57                                                   ` Vladimir Oltean
2023-11-24 20:47                                                   ` Willem de Bruijn
2023-11-21 23:40                               ` Richard Cochran
2023-11-14 11:28 ` [PATCH net-next v7 16/16] netlink: specs: Introduce time stamping set command Kory Maincent
2023-11-18 15:10 ` patchwork-bot+netdevbpf [this message]
2023-11-19  2:35   ` [PATCH net-next v7 00/16] net: Make timestamping selectable Jakub Kicinski

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=170032022683.7145.6992267439143242783.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc==?utf-8?q?K=C3=B6ry_Maincent_=3Ckory=2Emaincent=40bootlin=2Ecom=3E?=@ci.codeaurora.org \
    --cc=UNGLinuxDriver@microchip.com \
    --cc=andrew@lunn.ch \
    --cc=andy@greyhouse.net \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=claudiu.beznea@tuxon.dev \
    --cc=corbet@lwn.net \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=florian.fainelli@broadcom.com \
    --cc=hkallweit1@gmail.com \
    --cc=horatiu.vultur@microchip.com \
    --cc=horms@kernel.org \
    --cc=j.vosburgh@gmail.com \
    --cc=jay.vosburgh@canonical.com \
    --cc=kuba@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=maxime.chevallier@bootlin.com \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=pabeni@redhat.com \
    --cc=radu-nicolae.pirea@oss.nxp.com \
    --cc=richardcochran@gmail.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=vladimir.oltean@nxp.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;
as well as URLs for NNTP newsgroup(s).