Lines Matching full:sysfs
47 * set these flags using userspace utilities but there is also a sysfs
49 * are shared for all types of net_devices. The sysfs entries are available
50 * via /sys/class/net/<dev>/flags. Flags which can be toggled through sysfs
53 * even if you try to set them via sysfs. Flags which are always preserved
59 * @IFF_UP: interface is up. Can be toggled through sysfs.
61 * @IFF_DEBUG: turn on debugging. Can be toggled through sysfs.
64 * @IFF_NOTRAILERS: avoid use of trailers. Can be toggled through sysfs.
67 * @IFF_NOARP: no ARP protocol. Can be toggled through sysfs. Volatile.
68 * @IFF_PROMISC: receive all packets. Can be toggled through sysfs.
70 * sysfs.
73 * @IFF_MULTICAST: Supports multicast. Can be toggled through sysfs.
74 * @IFF_PORTSEL: can set media type. Can be toggled through sysfs.
75 * @IFF_AUTOMEDIA: auto media select active. Can be toggled through sysfs.
77 * through sysfs.
85 IFF_UP = 1<<0, /* sysfs */
87 IFF_DEBUG = 1<<2, /* sysfs */
90 IFF_NOTRAILERS = 1<<5, /* sysfs */
92 IFF_NOARP = 1<<7, /* sysfs */
93 IFF_PROMISC = 1<<8, /* sysfs */
94 IFF_ALLMULTI = 1<<9, /* sysfs */
97 IFF_MULTICAST = 1<<12, /* sysfs */
98 IFF_PORTSEL = 1<<13, /* sysfs */
99 IFF_AUTOMEDIA = 1<<14, /* sysfs */
100 IFF_DYNAMIC = 1<<15, /* sysfs */