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
c81eb7f2
Commit
c81eb7f2
authored
Sep 04, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Kill more verbose init msgs and unused RTNL_DEBUG define.
parent
977336cc
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
8 deletions
+0
-8
include/linux/rtnetlink.h
include/linux/rtnetlink.h
+0
-3
net/core/dv.c
net/core/dv.c
+0
-1
net/core/rtnetlink.c
net/core/rtnetlink.c
+0
-3
net/ipv4/ipmr.c
net/ipv4/ipmr.c
+0
-1
No files found.
include/linux/rtnetlink.h
View file @
c81eb7f2
...
@@ -3,9 +3,6 @@
...
@@ -3,9 +3,6 @@
#include <linux/netlink.h>
#include <linux/netlink.h>
#define RTNL_DEBUG 1
/****
/****
* Routing/neighbour discovery messages.
* Routing/neighbour discovery messages.
****/
****/
...
...
net/core/dv.c
View file @
c81eb7f2
...
@@ -40,7 +40,6 @@ const char sysctl_divert_version[32]="0.46"; /* Current version */
...
@@ -40,7 +40,6 @@ const char sysctl_divert_version[32]="0.46"; /* Current version */
static
int
__init
dv_init
(
void
)
static
int
__init
dv_init
(
void
)
{
{
printk
(
KERN_INFO
"NET4: Frame Diverter %s
\n
"
,
sysctl_divert_version
);
return
0
;
return
0
;
}
}
module_init
(
dv_init
);
module_init
(
dv_init
);
...
...
net/core/rtnetlink.c
View file @
c81eb7f2
...
@@ -559,9 +559,6 @@ struct notifier_block rtnetlink_dev_notifier = {
...
@@ -559,9 +559,6 @@ struct notifier_block rtnetlink_dev_notifier = {
void
__init
rtnetlink_init
(
void
)
void
__init
rtnetlink_init
(
void
)
{
{
#ifdef RTNL_DEBUG
printk
(
"Initializing RT netlink socket
\n
"
);
#endif
rtnl
=
netlink_kernel_create
(
NETLINK_ROUTE
,
rtnetlink_rcv
);
rtnl
=
netlink_kernel_create
(
NETLINK_ROUTE
,
rtnetlink_rcv
);
if
(
rtnl
==
NULL
)
if
(
rtnl
==
NULL
)
panic
(
"rtnetlink_init: cannot initialize rtnetlink
\n
"
);
panic
(
"rtnetlink_init: cannot initialize rtnetlink
\n
"
);
...
...
net/ipv4/ipmr.c
View file @
c81eb7f2
...
@@ -1744,7 +1744,6 @@ static struct inet_protocol pim_protocol = {
...
@@ -1744,7 +1744,6 @@ static struct inet_protocol pim_protocol = {
void
__init
ip_mr_init
(
void
)
void
__init
ip_mr_init
(
void
)
{
{
printk
(
KERN_INFO
"Linux IP multicast router 0.06 plus PIM-SM
\n
"
);
mrt_cachep
=
kmem_cache_create
(
"ip_mrt_cache"
,
mrt_cachep
=
kmem_cache_create
(
"ip_mrt_cache"
,
sizeof
(
struct
mfc_cache
),
sizeof
(
struct
mfc_cache
),
0
,
SLAB_HWCACHE_ALIGN
,
0
,
SLAB_HWCACHE_ALIGN
,
...
...
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