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
2f647ecc
Commit
2f647ecc
authored
May 26, 2003
by
Thomas Schlichter
Committed by
Hideaki Yoshifuji
May 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: IPSEC protocol module owner cleanup.
parent
a6011056
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
6 deletions
+4
-6
net/ipv4/esp.c
net/ipv4/esp.c
+1
-2
net/ipv4/ipcomp.c
net/ipv4/ipcomp.c
+2
-3
net/ipv4/xfrm4_tunnel.c
net/ipv4/xfrm4_tunnel.c
+1
-1
No files found.
net/ipv4/esp.c
View file @
2f647ecc
...
...
@@ -567,7 +567,7 @@ static struct inet_protocol esp4_protocol = {
.
no_policy
=
1
,
};
int
__init
esp4_init
(
void
)
static
int
__init
esp4_init
(
void
)
{
struct
xfrm_decap_state
decap
;
...
...
@@ -578,7 +578,6 @@ int __init esp4_init(void)
decap_data_too_small
();
}
esp_type
.
owner
=
THIS_MODULE
;
if
(
xfrm_register_type
(
&
esp_type
,
AF_INET
)
<
0
)
{
printk
(
KERN_INFO
"ip esp init: can't add xfrm type
\n
"
);
return
-
EAGAIN
;
...
...
net/ipv4/ipcomp.c
View file @
2f647ecc
...
...
@@ -382,9 +382,9 @@ static int ipcomp_init_state(struct xfrm_state *x, void *args)
goto
out
;
}
static
struct
xfrm_type
ipcomp_type
=
{
static
struct
xfrm_type
ipcomp_type
=
{
.
description
=
"IPCOMP4"
,
.
owner
=
THIS_MODULE
,
.
proto
=
IPPROTO_COMP
,
.
init_state
=
ipcomp_init_state
,
.
destructor
=
ipcomp_destroy
,
...
...
@@ -400,7 +400,6 @@ static struct inet_protocol ipcomp4_protocol = {
static
int
__init
ipcomp4_init
(
void
)
{
ipcomp_type
.
owner
=
THIS_MODULE
;
if
(
xfrm_register_type
(
&
ipcomp_type
,
AF_INET
)
<
0
)
{
printk
(
KERN_INFO
"ipcomp init: can't add xfrm type
\n
"
);
return
-
EAGAIN
;
...
...
net/ipv4/xfrm4_tunnel.c
View file @
2f647ecc
...
...
@@ -215,6 +215,7 @@ static void ipip_destroy(struct xfrm_state *x)
static
struct
xfrm_type
ipip_type
=
{
.
description
=
"IPIP"
,
.
owner
=
THIS_MODULE
,
.
proto
=
IPPROTO_IPIP
,
.
init_state
=
ipip_init_state
,
.
destructor
=
ipip_destroy
,
...
...
@@ -229,7 +230,6 @@ static struct inet_protocol ipip_protocol = {
static
int
__init
ipip_init
(
void
)
{
ipip_type
.
owner
=
THIS_MODULE
;
if
(
xfrm_register_type
(
&
ipip_type
,
AF_INET
)
<
0
)
{
printk
(
KERN_INFO
"ipip init: can't add xfrm type
\n
"
);
return
-
EAGAIN
;
...
...
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