diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-03-30 21:43:10 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-05-21 02:31:29 +0200 |
commit | d59eb177c84f9572a6b51024c0b2611c3b5a27c5 (patch) | |
tree | 85cfcfc6347e30b2b15d6fa693a6ae001ad0b6c9 /include/net/ipv6.h | |
parent | ipv4: do compat setsockopt for MCAST_MSFILTER directly (diff) | |
download | linux-d59eb177c84f9572a6b51024c0b2611c3b5a27c5.tar.xz linux-d59eb177c84f9572a6b51024c0b2611c3b5a27c5.zip |
ip6_mc_msfilter(): pass the address list separately
that way we'll be able to reuse it for compat case
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/net/ipv6.h')
-rw-r--r-- | include/net/ipv6.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index c45eb78d970f..39a00d3ef5e2 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -1136,7 +1136,8 @@ struct group_filter; int ip6_mc_source(int add, int omode, struct sock *sk, struct group_source_req *pgsr); -int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf); +int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf, + struct sockaddr_storage *list); int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf, struct sockaddr_storage __user *p); |