diff options
author | Ben Dooks | 2016-06-09 19:05:09 +0200 |
---|---|---|
committer | David S. Miller | 2016-06-11 08:22:55 +0200 |
commit | c3ec5e5ce9cea1f369a5a8ad69d6471680796bc6 (patch) | |
tree | 6d68af686a5d0a82410ee1d64cb37f338e58f41d /include/linux/inet_diag.h | |
parent | bridge: Fix incorrect re-injection of STP packets (diff) | |
download | kernel-qcow2-linux-c3ec5e5ce9cea1f369a5a8ad69d6471680796bc6.tar.gz kernel-qcow2-linux-c3ec5e5ce9cea1f369a5a8ad69d6471680796bc6.tar.xz kernel-qcow2-linux-c3ec5e5ce9cea1f369a5a8ad69d6471680796bc6.zip |
net: diag: add missing declarations
The functions inet_diag_msg_common_fill and inet_diag_msg_attrs_fill
seem to have been missed from the include/linux/inet_diag.h header
file. Add them to fix the following warnings:
net/ipv4/inet_diag.c:69:6: warning: symbol 'inet_diag_msg_common_fill' was not declared. Should it be static?
net/ipv4/inet_diag.c:108:5: warning: symbol 'inet_diag_msg_attrs_fill' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/inet_diag.h')
-rw-r--r-- | include/linux/inet_diag.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/inet_diag.h b/include/linux/inet_diag.h index 7c27fa1030e8..feb04ea20f11 100644 --- a/include/linux/inet_diag.h +++ b/include/linux/inet_diag.h @@ -52,6 +52,12 @@ struct sock *inet_diag_find_one_icsk(struct net *net, int inet_diag_bc_sk(const struct nlattr *_bc, struct sock *sk); +void inet_diag_msg_common_fill(struct inet_diag_msg *r, struct sock *sk); + +int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb, + struct inet_diag_msg *r, int ext, + struct user_namespace *user_ns); + extern int inet_diag_register(const struct inet_diag_handler *handler); extern void inet_diag_unregister(const struct inet_diag_handler *handler); #endif /* _INET_DIAG_H_ */ |