Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
71ca90c1
Commit
71ca90c1
authored
Sep 28, 2003
by
Arnaldo Carvalho de Melo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
o NET: move net/core/rtnetlink.c EXPORT_SYMBOLs from net/netsyms.c
parent
c487f144
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
net/core/rtnetlink.c
net/core/rtnetlink.c
+11
-1
net/netsyms.c
net/netsyms.c
+0
-11
No files found.
net/core/rtnetlink.c
View file @
71ca90c1
...
...
@@ -18,6 +18,7 @@
#include <linux/config.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/kernel.h>
...
...
@@ -556,7 +557,6 @@ struct notifier_block rtnetlink_dev_notifier = {
.
notifier_call
=
rtnetlink_event
,
};
void
__init
rtnetlink_init
(
void
)
{
rtnl
=
netlink_kernel_create
(
NETLINK_ROUTE
,
rtnetlink_rcv
);
...
...
@@ -567,3 +567,13 @@ void __init rtnetlink_init(void)
rtnetlink_links
[
PF_UNSPEC
]
=
link_rtnetlink_table
;
rtnetlink_links
[
PF_PACKET
]
=
link_rtnetlink_table
;
}
EXPORT_SYMBOL
(
__rta_fill
);
EXPORT_SYMBOL
(
rtattr_parse
);
EXPORT_SYMBOL
(
rtnetlink_dump_ifinfo
);
EXPORT_SYMBOL
(
rtnetlink_links
);
EXPORT_SYMBOL
(
rtnetlink_put_metrics
);
EXPORT_SYMBOL
(
rtnl
);
EXPORT_SYMBOL
(
rtnl_lock
);
EXPORT_SYMBOL
(
rtnl_sem
);
EXPORT_SYMBOL
(
rtnl_unlock
);
net/netsyms.c
View file @
71ca90c1
...
...
@@ -60,8 +60,6 @@
#endif
#endif
#include <linux/rtnetlink.h>
#ifdef CONFIG_IPX_MODULE
extern
struct
datalink_proto
*
make_EII_client
(
void
);
extern
struct
datalink_proto
*
make_8023_client
(
void
);
...
...
@@ -217,8 +215,6 @@ EXPORT_SYMBOL(ip_setsockopt);
EXPORT_SYMBOL
(
ip_getsockopt
);
#endif
/* CONFIG_IP_SCTP_MODULE */
EXPORT_SYMBOL
(
rtattr_parse
);
EXPORT_SYMBOL
(
__rta_fill
);
/* Used by at least ipip.c. */
...
...
@@ -262,13 +258,6 @@ EXPORT_SYMBOL(dev_mc_delete);
EXPORT_SYMBOL
(
dev_mc_upload
);
EXPORT_SYMBOL
(
__kill_fasync
);
EXPORT_SYMBOL
(
rtnl
);
EXPORT_SYMBOL
(
rtnetlink_links
);
EXPORT_SYMBOL
(
rtnetlink_dump_ifinfo
);
EXPORT_SYMBOL
(
rtnetlink_put_metrics
);
EXPORT_SYMBOL
(
rtnl_sem
);
EXPORT_SYMBOL
(
rtnl_lock
);
EXPORT_SYMBOL
(
rtnl_unlock
);
#ifdef CONFIG_HIPPI
EXPORT_SYMBOL
(
hippi_type_trans
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment