diff options
author | Eric Dumazet <edumazet@google.com> | 2023-09-11 18:42:13 +0300 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2023-09-12 19:44:18 +0300 |
commit | 8cdd9f1aaedf823006449faa4e540026c692ac43 (patch) | |
tree | 1a33e375ea0939795d9c4dea7a0dcc7f29fee0d4 /include | |
parent | 7a6102aa6df0d5d032b4cbc51935d1d4cda17254 (diff) | |
download | linux-8cdd9f1aaedf823006449faa4e540026c692ac43.tar.xz |
ipv6: fix ip6_sock_set_addr_preferences() typo
ip6_sock_set_addr_preferences() second argument should be an integer.
SUNRPC attempts to set IPV6_PREFER_SRC_PUBLIC were
translated to IPV6_PREFER_SRC_TMP
Fixes: 18d5ad623275 ("ipv6: add ip6_sock_set_addr_preferences")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Chuck Lever <chuck.lever@oracle.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20230911154213.713941-1-edumazet@google.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ipv6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 0675be0f3fa0..fe274c122a56 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -1360,7 +1360,7 @@ static inline int __ip6_sock_set_addr_preferences(struct sock *sk, int val) return 0; } -static inline int ip6_sock_set_addr_preferences(struct sock *sk, bool val) +static inline int ip6_sock_set_addr_preferences(struct sock *sk, int val) { int ret; |