Home | History | Annotate | Download | only in linux

Lines Matching full:sysfs

35  * set these flags using userspace utilities but there is also a sysfs
37 * are shared for all types of net_devices. The sysfs entries are available
38 * via /sys/class/net/<dev>/flags. Flags which can be toggled through sysfs
41 * even if you try to set them via sysfs. Flags which are always preserved
47 * @IFF_UP: interface is up. Can be toggled through sysfs.
49 * @IFF_DEBUG: turn on debugging. Can be toggled through sysfs.
52 * @IFF_NOTRAILERS: avoid use of trailers. Can be toggled through sysfs.
55 * @IFF_NOARP: no ARP protocol. Can be toggled through sysfs. Volatile.
56 * @IFF_PROMISC: receive all packets. Can be toggled through sysfs.
58 * sysfs.
61 * @IFF_MULTICAST: Supports multicast. Can be toggled through sysfs.
62 * @IFF_PORTSEL: can set media type. Can be toggled through sysfs.
63 * @IFF_AUTOMEDIA: auto media select active. Can be toggled through sysfs.
65 * through sysfs.
71 IFF_UP = 1<<0, /* sysfs */
73 IFF_DEBUG = 1<<2, /* sysfs */
76 IFF_NOTRAILERS = 1<<5, /* sysfs */
78 IFF_NOARP = 1<<7, /* sysfs */
79 IFF_PROMISC = 1<<8, /* sysfs */
80 IFF_ALLMULTI = 1<<9, /* sysfs */
83 IFF_MULTICAST = 1<<12, /* sysfs */
84 IFF_PORTSEL = 1<<13, /* sysfs */
85 IFF_AUTOMEDIA = 1<<14, /* sysfs */
86 IFF_DYNAMIC = 1<<15, /* sysfs */