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
55e61717
Commit
55e61717
authored
Jul 20, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/jmorris/net-2.5
into nuts.ninka.net:/home/davem/src/BK/net-2.5
parents
764cf56e
21afc023
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
net/ipv4/ah4.c
net/ipv4/ah4.c
+1
-1
net/ipv4/esp4.c
net/ipv4/esp4.c
+1
-1
net/ipv4/ipcomp.c
net/ipv4/ipcomp.c
+1
-1
net/ipv6/ah6.c
net/ipv6/ah6.c
+1
-1
net/ipv6/esp6.c
net/ipv6/esp6.c
+1
-1
net/ipv6/ipcomp6.c
net/ipv6/ipcomp6.c
+1
-1
No files found.
net/ipv4/ah4.c
View file @
55e61717
...
@@ -232,7 +232,7 @@ void ah4_err(struct sk_buff *skb, u32 info)
...
@@ -232,7 +232,7 @@ void ah4_err(struct sk_buff *skb, u32 info)
x
=
xfrm_state_lookup
((
xfrm_address_t
*
)
&
iph
->
daddr
,
ah
->
spi
,
IPPROTO_AH
,
AF_INET
);
x
=
xfrm_state_lookup
((
xfrm_address_t
*
)
&
iph
->
daddr
,
ah
->
spi
,
IPPROTO_AH
,
AF_INET
);
if
(
!
x
)
if
(
!
x
)
return
;
return
;
printk
(
KERN_DEBUG
"pmtu disc
v
overy on SA AH/%08x/%08x
\n
"
,
printk
(
KERN_DEBUG
"pmtu discovery on SA AH/%08x/%08x
\n
"
,
ntohl
(
ah
->
spi
),
ntohl
(
iph
->
daddr
));
ntohl
(
ah
->
spi
),
ntohl
(
iph
->
daddr
));
xfrm_state_put
(
x
);
xfrm_state_put
(
x
);
}
}
...
...
net/ipv4/esp4.c
View file @
55e61717
...
@@ -425,7 +425,7 @@ void esp4_err(struct sk_buff *skb, u32 info)
...
@@ -425,7 +425,7 @@ void esp4_err(struct sk_buff *skb, u32 info)
x
=
xfrm_state_lookup
((
xfrm_address_t
*
)
&
iph
->
daddr
,
esph
->
spi
,
IPPROTO_ESP
,
AF_INET
);
x
=
xfrm_state_lookup
((
xfrm_address_t
*
)
&
iph
->
daddr
,
esph
->
spi
,
IPPROTO_ESP
,
AF_INET
);
if
(
!
x
)
if
(
!
x
)
return
;
return
;
printk
(
KERN_DEBUG
"pmtu disc
v
overy on SA ESP/%08x/%08x
\n
"
,
printk
(
KERN_DEBUG
"pmtu discovery on SA ESP/%08x/%08x
\n
"
,
ntohl
(
esph
->
spi
),
ntohl
(
iph
->
daddr
));
ntohl
(
esph
->
spi
),
ntohl
(
iph
->
daddr
));
xfrm_state_put
(
x
);
xfrm_state_put
(
x
);
}
}
...
...
net/ipv4/ipcomp.c
View file @
55e61717
...
@@ -256,7 +256,7 @@ static void ipcomp4_err(struct sk_buff *skb, u32 info)
...
@@ -256,7 +256,7 @@ static void ipcomp4_err(struct sk_buff *skb, u32 info)
spi
,
IPPROTO_COMP
,
AF_INET
);
spi
,
IPPROTO_COMP
,
AF_INET
);
if
(
!
x
)
if
(
!
x
)
return
;
return
;
printk
(
KERN_DEBUG
"pmtu disc
v
overy on SA IPCOMP/%08x/%u.%u.%u.%u
\n
"
,
printk
(
KERN_DEBUG
"pmtu discovery on SA IPCOMP/%08x/%u.%u.%u.%u
\n
"
,
spi
,
NIPQUAD
(
iph
->
daddr
));
spi
,
NIPQUAD
(
iph
->
daddr
));
xfrm_state_put
(
x
);
xfrm_state_put
(
x
);
}
}
...
...
net/ipv6/ah6.c
View file @
55e61717
...
@@ -364,7 +364,7 @@ void ah6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
...
@@ -364,7 +364,7 @@ void ah6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
if
(
!
x
)
if
(
!
x
)
return
;
return
;
printk
(
KERN_DEBUG
"pmtu disc
v
overy on SA AH/%08x/"
printk
(
KERN_DEBUG
"pmtu discovery on SA AH/%08x/"
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x
\n
"
,
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x
\n
"
,
ntohl
(
ah
->
spi
),
NIP6
(
iph
->
daddr
));
ntohl
(
ah
->
spi
),
NIP6
(
iph
->
daddr
));
...
...
net/ipv6/esp6.c
View file @
55e61717
...
@@ -317,7 +317,7 @@ void esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
...
@@ -317,7 +317,7 @@ void esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
x
=
xfrm_state_lookup
((
xfrm_address_t
*
)
&
iph
->
daddr
,
esph
->
spi
,
IPPROTO_ESP
,
AF_INET6
);
x
=
xfrm_state_lookup
((
xfrm_address_t
*
)
&
iph
->
daddr
,
esph
->
spi
,
IPPROTO_ESP
,
AF_INET6
);
if
(
!
x
)
if
(
!
x
)
return
;
return
;
printk
(
KERN_DEBUG
"pmtu disc
v
overy on SA ESP/%08x/"
printk
(
KERN_DEBUG
"pmtu discovery on SA ESP/%08x/"
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x
\n
"
,
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x
\n
"
,
ntohl
(
esph
->
spi
),
NIP6
(
iph
->
daddr
));
ntohl
(
esph
->
spi
),
NIP6
(
iph
->
daddr
));
xfrm_state_put
(
x
);
xfrm_state_put
(
x
);
...
...
net/ipv6/ipcomp6.c
View file @
55e61717
...
@@ -248,7 +248,7 @@ static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
...
@@ -248,7 +248,7 @@ static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
if
(
!
x
)
if
(
!
x
)
return
;
return
;
printk
(
KERN_DEBUG
"pmtu disc
v
overy on SA IPCOMP/%08x/"
printk
(
KERN_DEBUG
"pmtu discovery on SA IPCOMP/%08x/"
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x
\n
"
,
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x
\n
"
,
spi
,
NIP6
(
iph
->
daddr
));
spi
,
NIP6
(
iph
->
daddr
));
xfrm_state_put
(
x
);
xfrm_state_put
(
x
);
...
...
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