Commit b58d731a authored by Nicolas Dichtel's avatar Nicolas Dichtel Committed by David S. Miller

ip6tnl: rename rtnl functions for consistency

Functions in this file start with ip6_tnl_.
Signed-off-by: default avatarNicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cfa323b6
...@@ -1498,7 +1498,7 @@ static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev) ...@@ -1498,7 +1498,7 @@ static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
return 0; return 0;
} }
static size_t ip6_get_size(const struct net_device *dev) static size_t ip6_tnl_get_size(const struct net_device *dev)
{ {
return return
/* IFLA_IPTUN_LINK */ /* IFLA_IPTUN_LINK */
...@@ -1520,7 +1520,7 @@ static size_t ip6_get_size(const struct net_device *dev) ...@@ -1520,7 +1520,7 @@ static size_t ip6_get_size(const struct net_device *dev)
0; 0;
} }
static int ip6_fill_info(struct sk_buff *skb, const struct net_device *dev) static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
{ {
struct ip6_tnl *tunnel = netdev_priv(dev); struct ip6_tnl *tunnel = netdev_priv(dev);
struct __ip6_tnl_parm *parm = &tunnel->parms; struct __ip6_tnl_parm *parm = &tunnel->parms;
...@@ -1546,8 +1546,8 @@ static struct rtnl_link_ops ip6_link_ops __read_mostly = { ...@@ -1546,8 +1546,8 @@ static struct rtnl_link_ops ip6_link_ops __read_mostly = {
.kind = "ip6tnl", .kind = "ip6tnl",
.maxtype = IFLA_IPTUN_MAX, .maxtype = IFLA_IPTUN_MAX,
.priv_size = sizeof(struct ip6_tnl), .priv_size = sizeof(struct ip6_tnl),
.get_size = ip6_get_size, .get_size = ip6_tnl_get_size,
.fill_info = ip6_fill_info, .fill_info = ip6_tnl_fill_info,
}; };
static struct xfrm6_tunnel ip4ip6_handler __read_mostly = { static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
......
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