net: export NET_ADDR_* values to user-space API
authorFlorian Fainelli <f.fainelli@gmail.com>
Fri, 28 Mar 2014 21:25:58 +0000 (14:25 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Mar 2014 20:09:06 +0000 (16:09 -0400)
NET_ADDR_* values are exported in the
/sys/class/net/<iface>/addr_assign_type sysfs attributes, and as such
constitutes an user-space ABI. Move the NET_ADDR_* definitions from
include/linux/netdevice.h to include/uapi/linux/netdevice.h

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h
include/uapi/linux/netdevice.h

index 29b579fb5196c3830d086a28661657af53c1d032..34cae3ee74f1789cbd249fb78f122e29ef1b32d5 100644 (file)
@@ -63,13 +63,6 @@ struct wireless_dev;
 void netdev_set_default_ethtool_ops(struct net_device *dev,
                                    const struct ethtool_ops *ops);
 
-/* hardware address assignment types */
-#define NET_ADDR_PERM          0       /* address is permanent (default) */
-#define NET_ADDR_RANDOM                1       /* address is generated randomly */
-#define NET_ADDR_STOLEN                2       /* address is stolen from other device */
-#define NET_ADDR_SET           3       /* address is set using
-                                        * dev_set_mac_address() */
-
 /* Backlog congestion levels */
 #define NET_RX_SUCCESS         0       /* keep 'em coming, baby */
 #define NET_RX_DROP            1       /* packet dropped */
index 6b9500bc2d56a0338b39dbf1b46540edc6ffe141..fdfbd1c17065e33fb45a3e70ebcc6d9cf6891dac 100644 (file)
@@ -49,5 +49,11 @@ enum {
         IF_PORT_100BASEFX
 };
 
+/* hardware address assignment types */
+#define NET_ADDR_PERM          0       /* address is permanent (default) */
+#define NET_ADDR_RANDOM                1       /* address is generated randomly */
+#define NET_ADDR_STOLEN                2       /* address is stolen from other device */
+#define NET_ADDR_SET           3       /* address is set using
+                                        * dev_set_mac_address() */
 
 #endif /* _UAPI_LINUX_NETDEVICE_H */