diff options
author | Florian Westphal <fw@strlen.de> | 2021-10-05 13:52:42 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-05 13:07:03 +0100 |
commit | 549017aa1bb7ec19a1e24e7f65480a1c2e76b90e (patch) | |
tree | 71e81b7595b46576b1aa8d01ba592c8511f8a189 /include | |
parent | 95bf387e3569e079dc621028e7c1c55ef01b0ed7 (diff) | |
download | linux-stable-549017aa1bb7ec19a1e24e7f65480a1c2e76b90e.tar.gz linux-stable-549017aa1bb7ec19a1e24e7f65480a1c2e76b90e.tar.bz2 linux-stable-549017aa1bb7ec19a1e24e7f65480a1c2e76b90e.zip |
netlink: remove netlink_broadcast_filtered
No users in tree since commit a3498436b3a0 ("netns: restrict uevents"),
so remove this functionality.
Cc: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netlink.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 61b1c7fcc401..1ec631838af9 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h @@ -156,10 +156,6 @@ bool netlink_strict_get_check(struct sk_buff *skb); int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock); int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid, __u32 group, gfp_t allocation); -int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, - __u32 portid, __u32 group, gfp_t allocation, - int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data), - void *filter_data); int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code); int netlink_register_notifier(struct notifier_block *nb); int netlink_unregister_notifier(struct notifier_block *nb); |