[IPv4]: Use rtnl registration interface
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
9d9e6a5819
commit
63f3444fb9
@@ -48,7 +48,6 @@
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/etherdevice.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/rtnetlink.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/notifier.h>
|
||||
#include <linux/inetdevice.h>
|
||||
@@ -62,7 +61,7 @@
|
||||
#include <net/ip.h>
|
||||
#include <net/route.h>
|
||||
#include <net/ip_fib.h>
|
||||
#include <net/netlink.h>
|
||||
#include <net/rtnetlink.h>
|
||||
|
||||
struct ipv4_devconf ipv4_devconf = {
|
||||
.accept_redirects = 1,
|
||||
@@ -1241,19 +1240,6 @@ errout:
|
||||
rtnl_set_sk_err(RTNLGRP_IPV4_IFADDR, err);
|
||||
}
|
||||
|
||||
static struct rtnetlink_link inet_rtnetlink_table[RTM_NR_MSGTYPES] = {
|
||||
[RTM_NEWADDR - RTM_BASE] = { .doit = inet_rtm_newaddr, },
|
||||
[RTM_DELADDR - RTM_BASE] = { .doit = inet_rtm_deladdr, },
|
||||
[RTM_GETADDR - RTM_BASE] = { .dumpit = inet_dump_ifaddr, },
|
||||
[RTM_NEWROUTE - RTM_BASE] = { .doit = inet_rtm_newroute, },
|
||||
[RTM_DELROUTE - RTM_BASE] = { .doit = inet_rtm_delroute, },
|
||||
[RTM_GETROUTE - RTM_BASE] = { .doit = inet_rtm_getroute,
|
||||
.dumpit = inet_dump_fib, },
|
||||
#ifdef CONFIG_IP_MULTIPLE_TABLES
|
||||
[RTM_GETRULE - RTM_BASE] = { .dumpit = fib4_rules_dump, },
|
||||
#endif
|
||||
};
|
||||
|
||||
#ifdef CONFIG_SYSCTL
|
||||
|
||||
void inet_forward_change(void)
|
||||
@@ -1636,7 +1622,10 @@ void __init devinet_init(void)
|
||||
{
|
||||
register_gifconf(PF_INET, inet_gifconf);
|
||||
register_netdevice_notifier(&ip_netdev_notifier);
|
||||
rtnetlink_links[PF_INET] = inet_rtnetlink_table;
|
||||
|
||||
rtnl_register(PF_INET, RTM_NEWADDR, inet_rtm_newaddr, NULL);
|
||||
rtnl_register(PF_INET, RTM_DELADDR, inet_rtm_deladdr, NULL);
|
||||
rtnl_register(PF_INET, RTM_GETADDR, NULL, inet_dump_ifaddr);
|
||||
#ifdef CONFIG_SYSCTL
|
||||
devinet_sysctl.sysctl_header =
|
||||
register_sysctl_table(devinet_sysctl.devinet_root_dir);
|
||||
|
Reference in New Issue
Block a user