| Submitter | Vlad Yasevich |
|---|---|
| Date | March 15, 2013, 4:39 p.m. |
| Message ID | <1363365552-27451-1-git-send-email-vyasevic@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/228089/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Vlad Yasevich <vyasevic@redhat.com> Date: Fri, 15 Mar 2013 12:39:12 -0400 > Most of the support was already there. The only thing that was missing > was the call to set the flag. Add this call. > > Signed-off-by: Vlad Yasevich <vyasevic@redhat.com> This looks like an unintentional omission, so I've applied this to 'net', thanks! -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c index 1382842..84c3b7d 100644 --- a/net/bridge/br_netlink.c +++ b/net/bridge/br_netlink.c @@ -327,6 +327,7 @@ static int br_setport(struct net_bridge_port *p, struct nlattr *tb[]) br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE); br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD); br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE); + br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK); if (tb[IFLA_BRPORT_COST]) { err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST]));
Most of the support was already there. The only thing that was missing was the call to set the flag. Add this call. Signed-off-by: Vlad Yasevich <vyasevic@redhat.com> --- net/bridge/br_netlink.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)