diff options
author | Jiri Pirko <jiri@resnulli.us> | 2013-01-01 03:30:16 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-03 22:37:36 -0800 |
commit | fbdeca2d7753aa1ab929aeb77ccc46489eed02b9 (patch) | |
tree | 156a4b2bada01c59549988352d203191288803e4 /include/linux/netdevice.h | |
parent | e41b2d7fe7803e85e1202d0eb172717d7bf1bbaf (diff) | |
download | lwn-fbdeca2d7753aa1ab929aeb77ccc46489eed02b9.tar.gz lwn-fbdeca2d7753aa1ab929aeb77ccc46489eed02b9.zip |
net: add address assign type "SET"
This is the way to indicate that mac address of a device has been set by
dev_set_mac_address()
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 6835b5837f93..c5031a45e185 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -64,6 +64,8 @@ struct wireless_dev; #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 */ |