Skip to content

Commit e74f510

Browse files
committed
Merge branch 'mpls_multipath'
Roopa Prabhu says: ==================== mpls: multipath support This patch adds support for MPLS multipath routes. Includes following changes to support multipath: - splits struct mpls_route into 'struct mpls_route + struct mpls_nh'. - struct mpls_nh represents a mpls nexthop label forwarding entry - Adds support to parse/fill RTA_MULTIPATH netlink attribute for multipath routes similar to ipv4/v6 fib - In the process of restructuring, this patch also consistently changes all labels to u8 $ip -f mpls route add 100 nexthop as 200 via inet 10.1.1.2 dev swp1 \ nexthop as 700 via inet 10.1.1.6 dev swp2 \ nexthop as 800 via inet 40.1.1.2 dev swp3 $ip -f mpls route show 100 nexthop as to 200 via inet 10.1.1.2 dev swp1 nexthop as to 700 via inet 10.1.1.6 dev swp2 nexthop as to 800 via inet 40.1.1.2 dev swp3 ==================== Signed-off-by: Roopa Prabhu <[email protected]> Acked-by: Eric W. Biederman <[email protected]> Signed-off-by: David S. Miller <[email protected]>
2 parents 654c9c5 + 1c78efa commit e74f510

File tree

3 files changed

+479
-148
lines changed

3 files changed

+479
-148
lines changed

include/net/mpls_iptunnel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
struct mpls_iptunnel_encap {
2020
u32 label[MAX_NEW_LABELS];
21-
u32 labels;
21+
u8 labels;
2222
};
2323

2424
static inline struct mpls_iptunnel_encap *mpls_lwtunnel_encap(struct lwtunnel_state *lwtstate)

0 commit comments

Comments
 (0)