* [PATCH v1] net: Remove orphaned ax25_ptr references
@ 2026-05-31 13:48 Costa Shulyupin
2026-05-31 16:12 ` Randy Dunlap
2026-06-02 2:10 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Costa Shulyupin @ 2026-05-31 13:48 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Simon Horman, Jonathan Corbet, Shuah Khan,
Randy Dunlap, netdev, linux-doc, linux-kernel
Cc: Costa Shulyupin
The AX.25 subsystem was removed in commit dd8d4bc28ad7
("net: remove ax25 and amateur radio (hamradio) subsystem"),
which removed the ax25_ptr field from struct net_device but
left behind the kdoc comment and documentation.
Assisted-by: Claude:claude-opus-4-6
Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
---
Documentation/networking/net_cachelines/net_device.rst | 1 -
include/linux/netdevice.h | 1 -
2 files changed, 2 deletions(-)
diff --git a/Documentation/networking/net_cachelines/net_device.rst b/Documentation/networking/net_cachelines/net_device.rst
index 7b3392553fd6..eb2e6851c6f6 100644
--- a/Documentation/networking/net_cachelines/net_device.rst
+++ b/Documentation/networking/net_cachelines/net_device.rst
@@ -91,7 +91,6 @@ struct vlan_info* vlan_info
struct dsa_port* dsa_ptr
struct tipc_bearer* tipc_ptr
void* atalk_ptr
-void* ax25_ptr
struct wireless_dev* ieee80211_ptr
struct wpan_dev* ieee802154_ptr
struct mpls_dev* mpls_ptr
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index beed64b8d93f..460350a7f77a 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1947,7 +1947,6 @@ enum netdev_reg_state {
* @atalk_ptr: AppleTalk link
* @ip_ptr: IPv4 specific data
* @ip6_ptr: IPv6 specific data
- * @ax25_ptr: AX.25 specific data
* @ieee80211_ptr: IEEE 802.11 specific data, assign before registering
* @ieee802154_ptr: IEEE 802.15.4 low-rate Wireless Personal Area Network
* device struct
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v1] net: Remove orphaned ax25_ptr references
2026-05-31 13:48 [PATCH v1] net: Remove orphaned ax25_ptr references Costa Shulyupin
@ 2026-05-31 16:12 ` Randy Dunlap
2026-06-02 2:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2026-05-31 16:12 UTC (permalink / raw)
To: Costa Shulyupin, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman, Jonathan Corbet,
Shuah Khan, netdev, linux-doc, linux-kernel
On 5/31/26 6:48 AM, Costa Shulyupin wrote:
> The AX.25 subsystem was removed in commit dd8d4bc28ad7
> ("net: remove ax25 and amateur radio (hamradio) subsystem"),
> which removed the ax25_ptr field from struct net_device but
> left behind the kdoc comment and documentation.
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
> ---
> Documentation/networking/net_cachelines/net_device.rst | 1 -
> include/linux/netdevice.h | 1 -
> 2 files changed, 2 deletions(-)
>
> diff --git a/Documentation/networking/net_cachelines/net_device.rst b/Documentation/networking/net_cachelines/net_device.rst
> index 7b3392553fd6..eb2e6851c6f6 100644
> --- a/Documentation/networking/net_cachelines/net_device.rst
> +++ b/Documentation/networking/net_cachelines/net_device.rst
> @@ -91,7 +91,6 @@ struct vlan_info* vlan_info
> struct dsa_port* dsa_ptr
> struct tipc_bearer* tipc_ptr
> void* atalk_ptr
> -void* ax25_ptr
> struct wireless_dev* ieee80211_ptr
> struct wpan_dev* ieee802154_ptr
> struct mpls_dev* mpls_ptr
> diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
> index beed64b8d93f..460350a7f77a 100644
> --- a/include/linux/netdevice.h
> +++ b/include/linux/netdevice.h
> @@ -1947,7 +1947,6 @@ enum netdev_reg_state {
> * @atalk_ptr: AppleTalk link
> * @ip_ptr: IPv4 specific data
> * @ip6_ptr: IPv6 specific data
> - * @ax25_ptr: AX.25 specific data
> * @ieee80211_ptr: IEEE 802.11 specific data, assign before registering
> * @ieee802154_ptr: IEEE 802.15.4 low-rate Wireless Personal Area Network
> * device struct
--
~Randy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] net: Remove orphaned ax25_ptr references
2026-05-31 13:48 [PATCH v1] net: Remove orphaned ax25_ptr references Costa Shulyupin
2026-05-31 16:12 ` Randy Dunlap
@ 2026-06-02 2:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-06-02 2:10 UTC (permalink / raw)
To: Costa Shulyupin
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, horms, corbet,
skhan, rdunlap, netdev, linux-doc, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Sun, 31 May 2026 16:48:36 +0300 you wrote:
> The AX.25 subsystem was removed in commit dd8d4bc28ad7
> ("net: remove ax25 and amateur radio (hamradio) subsystem"),
> which removed the ax25_ptr field from struct net_device but
> left behind the kdoc comment and documentation.
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
>
> [...]
Here is the summary with links:
- [v1] net: Remove orphaned ax25_ptr references
https://git.kernel.org/netdev/net-next/c/7745f1978a0f
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-02 2:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-31 13:48 [PATCH v1] net: Remove orphaned ax25_ptr references Costa Shulyupin
2026-05-31 16:12 ` Randy Dunlap
2026-06-02 2:10 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox