1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2014 Nicira, Inc.
9 #include <linux/if_ether.h>
10 #include <linux/netdevice.h>
11 #include <linux/mpls.h>
15 struct mpls_shim_hdr
{
16 __be32 label_stack_entry
;
19 static inline bool eth_p_mpls(__be16 eth_type
)
21 return eth_type
== htons(ETH_P_MPLS_UC
) ||
22 eth_type
== htons(ETH_P_MPLS_MC
);
25 static inline struct mpls_shim_hdr
*mpls_hdr(const struct sk_buff
*skb
)
27 return (struct mpls_shim_hdr
*)skb_network_header(skb
);
30 static inline struct mpls_shim_hdr
mpls_entry_encode(u32 label
,
35 struct mpls_shim_hdr result
;
37 result
.label_stack_entry
=
38 cpu_to_be32((label
<< MPLS_LS_LABEL_SHIFT
) |
39 (tc
<< MPLS_LS_TC_SHIFT
) |
40 (bos
? (1 << MPLS_LS_S_SHIFT
) : 0) |
41 (ttl
<< MPLS_LS_TTL_SHIFT
));