Commit ebb461f7 authored by Adrian Bunk's avatar Adrian Bunk Committed by Thomas Graf

[NETLINK]: Staticize and remove unused functions.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 654263cf
......@@ -116,8 +116,6 @@ struct netlink_skb_parms
#define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
extern int netlink_attach(int unit, int (*function)(int,struct sk_buff *skb));
extern void netlink_detach(int unit);
extern int netlink_post(int unit, struct sk_buff *skb);
extern struct sock *netlink_kernel_create(int unit, void (*input)(struct sock *sk, int len));
extern void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err);
......@@ -129,7 +127,6 @@ extern int netlink_register_notifier(struct notifier_block *nb);
extern int netlink_unregister_notifier(struct notifier_block *nb);
/* finegrained unicast helpers: */
struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid);
struct sock *netlink_getsockbyfilp(struct file *filp);
int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock, long timeo);
void netlink_detachskb(struct sock *sk, struct sk_buff *skb);
......
......@@ -546,7 +546,7 @@ static void netlink_overrun(struct sock *sk)
}
}
struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
{
int protocol = ssk->sk_protocol;
struct sock *sock;
......@@ -1210,30 +1210,6 @@ static rwlock_t nl_emu_lock = RW_LOCK_UNLOCKED;
* Backward compatibility.
*/
int netlink_attach(int unit, int (*function)(int, struct sk_buff *skb))
{
struct sock *sk = netlink_kernel_create(unit, NULL);
if (sk == NULL)
return -ENOBUFS;
nlk_sk(sk)->handler = function;
write_lock_bh(&nl_emu_lock);
netlink_kernel[unit] = sk->sk_socket;
write_unlock_bh(&nl_emu_lock);
return 0;
}
void netlink_detach(int unit)
{
struct socket *sock;
write_lock_bh(&nl_emu_lock);
sock = netlink_kernel[unit];
netlink_kernel[unit] = NULL;
write_unlock_bh(&nl_emu_lock);
sock_release(sock);
}
int netlink_post(int unit, struct sk_buff *skb)
{
struct socket *sock;
......@@ -1522,7 +1498,5 @@ EXPORT_SYMBOL(netlink_unicast);
EXPORT_SYMBOL(netlink_unregister_notifier);
#if defined(CONFIG_NETLINK_DEV) || defined(CONFIG_NETLINK_DEV_MODULE)
EXPORT_SYMBOL(netlink_attach);
EXPORT_SYMBOL(netlink_detach);
EXPORT_SYMBOL(netlink_post);
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment