diff options
| author | Amerigo Wang <[email protected]> | 2012-12-14 22:09:51 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2012-12-15 17:14:39 -0800 |
| commit | ccb1c31a7a8744cd153a7d92b726a56b56ad61d3 (patch) | |
| tree | 1c62ac2565c657155474b3e8335a13ebcc35560e /include/uapi/linux | |
| parent | 9dd9ff99532d7a7f8222fd1f0d410d91c0f15ac5 (diff) | |
bridge: add flags to distinguish permanent mdb entires
This patch adds a flag to each mdb entry, so that we can distinguish
permanent entries with temporary entries.
Cc: Herbert Xu <[email protected]>
Cc: Stephen Hemminger <[email protected]>
Cc: "David S. Miller" <[email protected]>
Signed-off-by: Cong Wang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/if_bridge.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/if_bridge.h b/include/uapi/linux/if_bridge.h index afbb18a0227c..5db297514aec 100644 --- a/include/uapi/linux/if_bridge.h +++ b/include/uapi/linux/if_bridge.h @@ -163,6 +163,9 @@ struct br_port_msg { struct br_mdb_entry { __u32 ifindex; +#define MDB_TEMPORARY 0 +#define MDB_PERMANENT 1 + __u8 state; struct { union { __be32 ip4; |