Home
last modified time | relevance | path

Searched refs:proto_down (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/net/core/
H A Ddev_api.c169 int dev_change_proto_down(struct net_device *dev, bool proto_down) in dev_change_proto_down() argument
174 ret = netif_change_proto_down(dev, proto_down); in dev_change_proto_down()
H A Ddev.h111 int netif_change_proto_down(struct net_device *dev, bool proto_down);
112 int dev_change_proto_down(struct net_device *dev, bool proto_down);
H A Dnet-sysfs.c624 static int change_proto_down(struct net_device *dev, unsigned long proto_down) in change_proto_down() argument
626 return dev_change_proto_down(dev, (bool)proto_down); in change_proto_down()
635 NETDEVICE_SHOW_RW(proto_down, fmt_dec);
H A Drtnetlink.c1948 if (nla_put_u8(skb, IFLA_PROTO_DOWN, READ_ONCE(dev->proto_down))) in rtnl_fill_proto_down()
2970 bool proto_down; in do_set_proto_down() local
3001 proto_down = nla_get_u8(nl_proto_down); in do_set_proto_down()
3004 if (!proto_down && dev->proto_down_reason) { in do_set_proto_down()
3008 err = netif_change_proto_down(dev, proto_down); in do_set_proto_down()
H A Ddev.c9735 int netif_change_proto_down(struct net_device *dev, bool proto_down) in netif_change_proto_down() argument
9741 if (proto_down) in netif_change_proto_down()
9745 WRITE_ONCE(dev->proto_down, proto_down); in netif_change_proto_down()
/linux-6.15/Documentation/networking/net_cachelines/
H A Dnet_device.rst165 bool proto_down
/linux-6.15/drivers/net/ethernet/rocker/
H A Drocker_main.c1788 if (!dev->proto_down) in rocker_port_open()
/linux-6.15/include/linux/
H A Dnetdevice.h2424 bool proto_down; member