Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit daf1de90 authored by wenxu's avatar wenxu Committed by Pablo Neira Ayuso
Browse files

netfilter: nft_meta_bridge: Fix get NFT_META_BRI_IIFVPROTO in network byteorder



Get the vlan_proto of ingress bridge in network byteorder as userspace
expects. Otherwise this is inconsistent with NFT_META_PROTOCOL.

Fixes: 2a3a93ef ("netfilter: nft_meta_bridge: Add NFT_META_BRI_IIFVPROTO support")
Signed-off-by: default avatarwenxu <wenxu@ucloud.cn>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent de20900f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ static void nft_meta_bridge_get_eval(const struct nft_expr *expr,
			goto err;

		br_vlan_get_proto(br_dev, &p_proto);
		nft_reg_store16(dest, p_proto);
		nft_reg_store16(dest, htons(p_proto));
		return;
	}
	default: