mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
sit: rename rtnl functions for consistency
Functions in this file start with ipip6_. Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a12c9a8581
commit
e4c94a9cdc
1 changed files with 4 additions and 4 deletions
|
@ -1197,7 +1197,7 @@ static int __net_init ipip6_fb_tunnel_init(struct net_device *dev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t sit_get_size(const struct net_device *dev)
|
static size_t ipip6_get_size(const struct net_device *dev)
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
/* IFLA_IPTUN_LINK */
|
/* IFLA_IPTUN_LINK */
|
||||||
|
@ -1217,7 +1217,7 @@ static size_t sit_get_size(const struct net_device *dev)
|
||||||
0;
|
0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sit_fill_info(struct sk_buff *skb, const struct net_device *dev)
|
static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct ip_tunnel *tunnel = netdev_priv(dev);
|
struct ip_tunnel *tunnel = netdev_priv(dev);
|
||||||
struct ip_tunnel_parm *parm = &tunnel->parms;
|
struct ip_tunnel_parm *parm = &tunnel->parms;
|
||||||
|
@ -1241,8 +1241,8 @@ static struct rtnl_link_ops sit_link_ops __read_mostly = {
|
||||||
.kind = "sit",
|
.kind = "sit",
|
||||||
.maxtype = IFLA_IPTUN_MAX,
|
.maxtype = IFLA_IPTUN_MAX,
|
||||||
.priv_size = sizeof(struct ip_tunnel),
|
.priv_size = sizeof(struct ip_tunnel),
|
||||||
.get_size = sit_get_size,
|
.get_size = ipip6_get_size,
|
||||||
.fill_info = sit_fill_info,
|
.fill_info = ipip6_fill_info,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct xfrm_tunnel sit_handler __read_mostly = {
|
static struct xfrm_tunnel sit_handler __read_mostly = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue