mirror of https://gitee.com/openkylin/linux.git
i40e: Fix incorrect argument in call to ipv6_addr_any()
It seems that the right argument to be passed is &tcp_ip6_spec->ip6dst,
not &tcp_ip6_spec->ip6src, when calling function ipv6_addr_any().
Addresses-Coverity-ID: 1501734 ("Copy-paste error")
Fixes: efca91e89b
("i40e: Add flow director support for IPv6")
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
14b3b46a67
commit
7f76963b69
|
@ -4250,7 +4250,7 @@ static int i40e_check_fdir_input_set(struct i40e_vsi *vsi,
|
|||
(struct in6_addr *)&ipv6_full_mask))
|
||||
new_mask |= I40E_L3_V6_DST_MASK;
|
||||
else if (ipv6_addr_any((struct in6_addr *)
|
||||
&tcp_ip6_spec->ip6src))
|
||||
&tcp_ip6_spec->ip6dst))
|
||||
new_mask &= ~I40E_L3_V6_DST_MASK;
|
||||
else
|
||||
return -EOPNOTSUPP;
|
||||
|
|
Loading…
Reference in New Issue