o NET: move net/core/dst.c EXPORT_SYMBOLs from net/netsyms.c

parent c78d6c66
......@@ -6,15 +6,16 @@
*/
#include <linux/bitops.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/netdevice.h>
#include <linux/sched.h>
#include <linux/skbuff.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/types.h>
#include <net/dst.h>
......@@ -257,3 +258,7 @@ void __init dst_init(void)
{
register_netdevice_notifier(&dst_dev_notifier);
}
EXPORT_SYMBOL(__dst_free);
EXPORT_SYMBOL(dst_alloc);
EXPORT_SYMBOL(dst_destroy);
......@@ -19,7 +19,6 @@
#include <linux/ioport.h>
#include <linux/tty.h>
#include <net/snmp.h>
#include <net/dst.h>
#include <net/checksum.h>
#include <linux/etherdevice.h>
#include <net/route.h>
......@@ -65,11 +64,6 @@ extern void destroy_8023_client(struct datalink_proto *);
EXPORT_SYMBOL(sk_run_filter);
EXPORT_SYMBOL(sk_chk_filter);
/* dst_entry */
EXPORT_SYMBOL(dst_alloc);
EXPORT_SYMBOL(__dst_free);
EXPORT_SYMBOL(dst_destroy);
/* Needed by unix.o */
EXPORT_SYMBOL(files_stat);
......
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