From: Daniel Borkmann Date: Fri, 23 Aug 2024 12:00:53 +0000 (+0200) Subject: netkit: Disable netpoll support X-Git-Tag: v6.12-rc1~232^2~27^2~7 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d96608794889;p=linux-block.git netkit: Disable netpoll support Follow-up to 45160cebd6ac ("net: veth: Disable netpoll support") to also disable netpoll for netkit interfaces. Same conditions apply here as well. Signed-off-by: Daniel Borkmann Cc: Breno Leitao Cc: Nikolay Aleksandrov Acked-by: Nikolay Aleksandrov Reviewed-by: Breno Leitao Link: https://lore.kernel.org/r/eab2d69ba2f4c260aef62e4ff0d803e9f60c2c5d.1724414250.git.daniel@iogearbox.net Signed-off-by: Martin KaFai Lau --- diff --git a/drivers/net/netkit.c b/drivers/net/netkit.c index 16789cd446e9..0681cf86284d 100644 --- a/drivers/net/netkit.c +++ b/drivers/net/netkit.c @@ -255,6 +255,7 @@ static void netkit_setup(struct net_device *dev) dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; dev->priv_flags |= IFF_PHONY_HEADROOM; dev->priv_flags |= IFF_NO_QUEUE; + dev->priv_flags |= IFF_DISABLE_NETPOLL; dev->ethtool_ops = &netkit_ethtool_ops; dev->netdev_ops = &netkit_netdev_ops;