mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 11:27:47 +00:00
flow_dissector: Fix MPLS entropy label handling in flow dissector
Need to shift after masking to get label value for comparison. Fixes: b3baa0fbd02a1a9d493d8 ("mpls: Add MPLS entropy label in flow_keys") Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Tom Herbert <tom@herbertland.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b60f2f3d65
commit
611d23c559
@ -299,8 +299,8 @@ mpls:
|
||||
if (!hdr)
|
||||
return false;
|
||||
|
||||
if ((ntohl(hdr[0].entry) & MPLS_LS_LABEL_MASK) ==
|
||||
MPLS_LABEL_ENTROPY) {
|
||||
if ((ntohl(hdr[0].entry) & MPLS_LS_LABEL_MASK) >>
|
||||
MPLS_LS_LABEL_SHIFT == MPLS_LABEL_ENTROPY) {
|
||||
if (skb_flow_dissector_uses_key(flow_dissector,
|
||||
FLOW_DISSECTOR_KEY_MPLS_ENTROPY)) {
|
||||
key_keyid = skb_flow_dissector_target(flow_dissector,
|
||||
|
Loading…
x
Reference in New Issue
Block a user