diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2008-06-17 16:10:06 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-17 16:10:06 -0700 |
commit | 92c0574f11598c8036f81e27d2e8bdd6eed7d76d (patch) | |
tree | 179c0a8ef7291cc65a692043310b543d35c16eac /net/bridge/br_private.h | |
parent | 43aa1920117801fe9ae3d1fad886b62511e09bee (diff) |
bridge: make bridge address settings sticky
Normally, the bridge just chooses the smallest mac address as the
bridge id and mac address of bridge device. But if the administrator
has explictly set the interface address then don't change it.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_private.h')
-rw-r--r-- | net/bridge/br_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index 83ff5861c2d2..8593c9f6a302 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h @@ -92,6 +92,8 @@ struct net_bridge struct hlist_head hash[BR_HASH_SIZE]; struct list_head age_list; unsigned long feature_mask; + unsigned long flags; +#define BR_SET_MAC_ADDR 0x00000001 /* STP */ bridge_id designated_root; |