mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
net/ipv4: EXPORT_SYMBOL cleanups
CodingStyle cleanups EXPORT_SYMBOL should immediately follow the symbol declaration. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ba80a25228
commit
4bc2f18ba4
22 changed files with 67 additions and 140 deletions
|
@ -1244,6 +1244,7 @@ void ip_mc_inc_group(struct in_device *in_dev, __be32 addr)
|
|||
out:
|
||||
return;
|
||||
}
|
||||
EXPORT_SYMBOL(ip_mc_inc_group);
|
||||
|
||||
/*
|
||||
* Resend IGMP JOIN report; used for bonding.
|
||||
|
@ -1266,6 +1267,7 @@ void ip_mc_rejoin_group(struct ip_mc_list *im)
|
|||
igmp_ifc_event(in_dev);
|
||||
#endif
|
||||
}
|
||||
EXPORT_SYMBOL(ip_mc_rejoin_group);
|
||||
|
||||
/*
|
||||
* A socket has left a multicast group on device dev
|
||||
|
@ -1296,6 +1298,7 @@ void ip_mc_dec_group(struct in_device *in_dev, __be32 addr)
|
|||
}
|
||||
}
|
||||
}
|
||||
EXPORT_SYMBOL(ip_mc_dec_group);
|
||||
|
||||
/* Device changing type */
|
||||
|
||||
|
@ -1804,6 +1807,7 @@ done:
|
|||
rtnl_unlock();
|
||||
return err;
|
||||
}
|
||||
EXPORT_SYMBOL(ip_mc_join_group);
|
||||
|
||||
static void ip_sf_socklist_reclaim(struct rcu_head *rp)
|
||||
{
|
||||
|
@ -2676,8 +2680,3 @@ int __init igmp_mc_proc_init(void)
|
|||
return register_pernet_subsys(&igmp_net_ops);
|
||||
}
|
||||
#endif
|
||||
|
||||
EXPORT_SYMBOL(ip_mc_dec_group);
|
||||
EXPORT_SYMBOL(ip_mc_inc_group);
|
||||
EXPORT_SYMBOL(ip_mc_join_group);
|
||||
EXPORT_SYMBOL(ip_mc_rejoin_group);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue