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
nexedi
linux
Commits
13b3cc3e
Commit
13b3cc3e
authored
Aug 31, 2003
by
Christoph Hellwig
Committed by
David S. Miller
Aug 31, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV6]: Use per-cpu data for icmp sockets.
parent
c2399953
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
28 deletions
+24
-28
net/ipv6/icmp.c
net/ipv6/icmp.c
+24
-28
No files found.
net/ipv6/icmp.c
View file @
13b3cc3e
...
@@ -70,12 +70,14 @@
...
@@ -70,12 +70,14 @@
DEFINE_SNMP_STAT
(
struct
icmpv6_mib
,
icmpv6_statistics
);
DEFINE_SNMP_STAT
(
struct
icmpv6_mib
,
icmpv6_statistics
);
/*
/*
* ICMP socket(s) for flow control.
* The ICMP socket(s). This is the most convenient way to flow control
* our ICMP output as well as maintain a clean interface throughout
* all layers. All Socketless IP sends will soon be gone.
*
* On SMP we have one ICMP socket per-cpu.
*/
*/
static
DEFINE_PER_CPU
(
struct
socket
*
,
__icmpv6_socket
)
=
NULL
;
/* XXX We can't use per_cpu because this can be modular... */
#define icmpv6_socket __get_cpu_var(__icmpv6_socket)
static
struct
socket
*
__icmpv6_socket
[
NR_CPUS
];
#define icmpv6_socket __icmpv6_socket[smp_processor_id()]
static
int
icmpv6_rcv
(
struct
sk_buff
**
pskb
,
unsigned
int
*
nhoffp
);
static
int
icmpv6_rcv
(
struct
sk_buff
**
pskb
,
unsigned
int
*
nhoffp
);
...
@@ -96,6 +98,7 @@ struct icmpv6_msg {
...
@@ -96,6 +98,7 @@ struct icmpv6_msg {
static
__inline__
void
icmpv6_xmit_lock
(
void
)
static
__inline__
void
icmpv6_xmit_lock
(
void
)
{
{
local_bh_disable
();
local_bh_disable
();
if
(
unlikely
(
!
spin_trylock
(
&
icmpv6_socket
->
sk
->
sk_lock
.
slock
)))
if
(
unlikely
(
!
spin_trylock
(
&
icmpv6_socket
->
sk
->
sk_lock
.
slock
)))
BUG
();
BUG
();
}
}
...
@@ -657,33 +660,23 @@ static int icmpv6_rcv(struct sk_buff **pskb, unsigned int *nhoffp)
...
@@ -657,33 +660,23 @@ static int icmpv6_rcv(struct sk_buff **pskb, unsigned int *nhoffp)
int
__init
icmpv6_init
(
struct
net_proto_family
*
ops
)
int
__init
icmpv6_init
(
struct
net_proto_family
*
ops
)
{
{
struct
sock
*
sk
;
struct
sock
*
sk
;
int
i
;
int
err
,
i
,
j
;
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
int
err
;
if
(
!
cpu_possible
(
i
))
if
(
!
cpu_possible
(
i
))
continue
;
continue
;
err
=
sock_create
(
PF_INET6
,
SOCK_RAW
,
IPPROTO_ICMPV6
,
err
=
sock_create
(
PF_INET6
,
SOCK_RAW
,
IPPROTO_ICMPV6
,
&
__icmpv6_socket
[
i
]
);
&
per_cpu
(
__icmpv6_socket
,
i
)
);
if
(
err
<
0
)
{
if
(
err
<
0
)
{
int
j
;
printk
(
KERN_ERR
printk
(
KERN_ERR
"Failed to initialize the ICMP6 control socket "
"Failed to initialize the ICMP6 control socket "
"(err %d).
\n
"
,
"(err %d).
\n
"
,
err
);
err
);
for
(
j
=
0
;
j
<
i
;
j
++
)
{
goto
fail
;
if
(
!
cpu_possible
(
j
))
continue
;
sock_release
(
__icmpv6_socket
[
j
]);
__icmpv6_socket
[
j
]
=
NULL
;
/* for safety */
}
return
err
;
}
}
sk
=
__icmpv6_socket
[
i
]
->
sk
;
sk
=
per_cpu
(
__icmpv6_socket
,
i
)
->
sk
;
sk
->
sk_allocation
=
GFP_ATOMIC
;
sk
->
sk_allocation
=
GFP_ATOMIC
;
sk
->
sk_sndbuf
=
SK_WMEM_MAX
*
2
;
sk
->
sk_sndbuf
=
SK_WMEM_MAX
*
2
;
sk
->
sk_prot
->
unhash
(
sk
);
sk
->
sk_prot
->
unhash
(
sk
);
...
@@ -692,16 +685,20 @@ int __init icmpv6_init(struct net_proto_family *ops)
...
@@ -692,16 +685,20 @@ int __init icmpv6_init(struct net_proto_family *ops)
if
(
inet6_add_protocol
(
&
icmpv6_protocol
,
IPPROTO_ICMPV6
)
<
0
)
{
if
(
inet6_add_protocol
(
&
icmpv6_protocol
,
IPPROTO_ICMPV6
)
<
0
)
{
printk
(
KERN_ERR
"Failed to register ICMP6 protocol
\n
"
);
printk
(
KERN_ERR
"Failed to register ICMP6 protocol
\n
"
);
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
err
=
-
EAGAIN
;
if
(
!
cpu_possible
(
i
))
goto
fail
;
continue
;
sock_release
(
__icmpv6_socket
[
i
]);
__icmpv6_socket
[
i
]
=
NULL
;
}
return
-
EAGAIN
;
}
}
return
0
;
return
0
;
fail:
for
(
j
=
0
;
j
<
i
;
j
++
)
{
if
(
!
cpu_possible
(
j
))
continue
;
sock_release
(
per_cpu
(
__icmpv6_socket
,
j
));
}
return
err
;
}
}
void
icmpv6_cleanup
(
void
)
void
icmpv6_cleanup
(
void
)
...
@@ -711,8 +708,7 @@ void icmpv6_cleanup(void)
...
@@ -711,8 +708,7 @@ void icmpv6_cleanup(void)
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
if
(
!
cpu_possible
(
i
))
if
(
!
cpu_possible
(
i
))
continue
;
continue
;
sock_release
(
__icmpv6_socket
[
i
]);
sock_release
(
per_cpu
(
__icmpv6_socket
,
i
));
__icmpv6_socket
[
i
]
=
NULL
;
/* For safety. */
}
}
inet6_del_protocol
(
&
icmpv6_protocol
,
IPPROTO_ICMPV6
);
inet6_del_protocol
(
&
icmpv6_protocol
,
IPPROTO_ICMPV6
);
}
}
...
...
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