Message ID | 20240812073046.1728288-1-o.rempel@pengutronix.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 2140e63cd87fa707acf514d594725097bed018fd |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next,v5,1/3] ethtool: Add new result codes for TDR diagnostics | expand |
On Mon, 12 Aug 2024 09:30:44 +0200 Oleksij Rempel wrote: > Add new result codes to support TDR diagnostics in preparation for > Open Alliance 1000BaseT1 TDR support: > > - ETHTOOL_A_CABLE_RESULT_CODE_NOISE: TDR not possible due to high noise > level. > - ETHTOOL_A_CABLE_RESULT_CODE_RESOLUTION_NOT_POSSIBLE: TDR resolution not > possible / out of distance. Oleksij, please improve your postings. You have no cover letter here. No link to previous postings. You didn't take Andrew's review tags from v4.
Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Mon, 12 Aug 2024 09:30:44 +0200 you wrote: > Add new result codes to support TDR diagnostics in preparation for > Open Alliance 1000BaseT1 TDR support: > > - ETHTOOL_A_CABLE_RESULT_CODE_NOISE: TDR not possible due to high noise > level. > - ETHTOOL_A_CABLE_RESULT_CODE_RESOLUTION_NOT_POSSIBLE: TDR resolution not > possible / out of distance. > > [...] Here is the summary with links: - [net-next,v5,1/3] ethtool: Add new result codes for TDR diagnostics https://git.kernel.org/netdev/net-next/c/2140e63cd87f - [net-next,v5,2/3] phy: Add Open Alliance helpers for the PHY framework https://git.kernel.org/netdev/net-next/c/9e7c1a9b9033 - [net-next,v5,3/3] net: phy: dp83tg720: Add cable testing support https://git.kernel.org/netdev/net-next/c/20f77dc72471 You are awesome, thank you!
diff --git a/include/uapi/linux/ethtool_netlink.h b/include/uapi/linux/ethtool_netlink.h index 6d5bdcc67631a..fc814c8a5ac47 100644 --- a/include/uapi/linux/ethtool_netlink.h +++ b/include/uapi/linux/ethtool_netlink.h @@ -556,6 +556,10 @@ enum { * a regular 100 Ohm cable and a part with the abnormal impedance value */ ETHTOOL_A_CABLE_RESULT_CODE_IMPEDANCE_MISMATCH, + /* TDR not possible due to high noise level */ + ETHTOOL_A_CABLE_RESULT_CODE_NOISE, + /* TDR resolution not possible / out of distance */ + ETHTOOL_A_CABLE_RESULT_CODE_RESOLUTION_NOT_POSSIBLE, }; enum {
Add new result codes to support TDR diagnostics in preparation for Open Alliance 1000BaseT1 TDR support: - ETHTOOL_A_CABLE_RESULT_CODE_NOISE: TDR not possible due to high noise level. - ETHTOOL_A_CABLE_RESULT_CODE_RESOLUTION_NOT_POSSIBLE: TDR resolution not possible / out of distance. Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de> --- include/uapi/linux/ethtool_netlink.h | 4 ++++ 1 file changed, 4 insertions(+)