diff options
author | Sergey V. Lobanov <sergey@lobanov.in> | 2024-12-01 00:41:45 +0100 |
---|---|---|
committer | Sergey V. Lobanov <sergey@lobanov.in> | 2024-12-01 00:41:45 +0100 |
commit | 43f9e5c7ffdc02c06d8c1459027bbf550048e0d4 (patch) | |
tree | 9d05e728e5bf07584f0850444e9dca45dbfe64ef /drivers | |
parent | 56f4cdce99599cf87afbf724ff3f14f909da37a0 (diff) | |
download | accel-ppp-43f9e5c7ffdc02c06d8c1459027bbf550048e0d4.tar.gz accel-ppp-43f9e5c7ffdc02c06d8c1459027bbf550048e0d4.zip |
ipoe: fix driver for kernel 6.12 (NETIF_F_NETNS_LOCAL)
Closes: https://github.com/accel-ppp/accel-ppp/issues/217
Ref: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=05c1280a2bcfca187fe7fa90bb240602cf54af0a
Ref: https://github.com/torvalds/linux/commit/05c1280a2bcfca187fe7fa90bb240602cf54af0a
Reported-By: https://github.com/axe-kenig
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ipoe/ipoe.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ipoe/ipoe.c b/drivers/ipoe/ipoe.c index fa7dec3f..c6b88620 100644 --- a/drivers/ipoe/ipoe.c +++ b/drivers/ipoe/ipoe.c @@ -1105,7 +1105,11 @@ static void ipoe_netdev_setup(struct net_device *dev) dev->iflink = 0; #endif dev->addr_len = ETH_ALEN; +#if LINUX_VERSION_CODE >= KERNEL_VERSION(6,12,0) + dev->netns_local = true; +#else dev->features |= NETIF_F_NETNS_LOCAL; +#endif dev->features &= ~(NETIF_F_HW_VLAN_FILTER | NETIF_F_LRO); dev->header_ops = &ipoe_hard_header_ops; dev->priv_flags &= ~IFF_XMIT_DST_RELEASE; |