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
2d875337
Commit
2d875337
authored
Jan 23, 2004
by
Hideaki Yoshifuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV6]: Fix several comment spelling errors and typos.
parent
03cc059d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
net/ipv6/addrconf.c
net/ipv6/addrconf.c
+1
-1
net/ipv6/exthdrs.c
net/ipv6/exthdrs.c
+1
-1
net/ipv6/ip6_fib.c
net/ipv6/ip6_fib.c
+1
-1
net/ipv6/reassembly.c
net/ipv6/reassembly.c
+1
-1
net/ipv6/route.c
net/ipv6/route.c
+3
-3
No files found.
net/ipv6/addrconf.c
View file @
2d875337
...
@@ -1338,7 +1338,7 @@ void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
...
@@ -1338,7 +1338,7 @@ void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len)
* 2) Configure prefixes with the auto flag set
* 2) Configure prefixes with the auto flag set
*/
*/
/* Avoid arith
em
tic overflow. Really, we could
/* Avoid arith
me
tic overflow. Really, we could
save rt_expires in seconds, likely valid_lft,
save rt_expires in seconds, likely valid_lft,
but it would require division in fib gc, that it
but it would require division in fib gc, that it
not good.
not good.
...
...
net/ipv6/exthdrs.c
View file @
2d875337
...
@@ -367,7 +367,7 @@ ipv6_invert_rthdr(struct sock *sk, struct ipv6_rt_hdr *hdr)
...
@@ -367,7 +367,7 @@ ipv6_invert_rthdr(struct sock *sk, struct ipv6_rt_hdr *hdr)
Inverted result:
Inverted result:
[ H_prev -> ... -> H1 ] daddr =sender
[ H_prev -> ... -> H1 ] daddr =sender
Note, that IP output engine will rewri
r
e this rthdr
Note, that IP output engine will rewri
t
e this rthdr
by rotating it left by one addr.
by rotating it left by one addr.
*/
*/
...
...
net/ipv6/ip6_fib.c
View file @
2d875337
...
@@ -942,7 +942,7 @@ static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
...
@@ -942,7 +942,7 @@ static void fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp,
}
}
fn
=
fn
->
parent
;
fn
=
fn
->
parent
;
}
}
/* No more references are possi
i
ble at this point. */
/* No more references are possible at this point. */
if
(
atomic_read
(
&
rt
->
rt6i_ref
)
!=
1
)
BUG
();
if
(
atomic_read
(
&
rt
->
rt6i_ref
)
!=
1
)
BUG
();
}
}
...
...
net/ipv6/reassembly.c
View file @
2d875337
...
@@ -526,7 +526,7 @@ static void ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
...
@@ -526,7 +526,7 @@ static void ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
}
else
{
}
else
{
struct
sk_buff
*
free_it
=
next
;
struct
sk_buff
*
free_it
=
next
;
/* Old fragm
ne
t is completely overridden with
/* Old fragm
en
t is completely overridden with
* new one drop it.
* new one drop it.
*/
*/
next
=
next
->
next
;
next
=
next
->
next
;
...
...
net/ipv6/route.c
View file @
2d875337
...
@@ -785,7 +785,7 @@ int ip6_route_add(struct in6_rtmsg *rtmsg, struct nlmsghdr *nlh, void *_rtattr)
...
@@ -785,7 +785,7 @@ int ip6_route_add(struct in6_rtmsg *rtmsg, struct nlmsghdr *nlh, void *_rtattr)
/* IPv6 strictly inhibits using not link-local
/* IPv6 strictly inhibits using not link-local
addresses as nexthop address.
addresses as nexthop address.
Otherwise, router will not able to send redirects.
Otherwise, router will not able to send redirects.
It is very good, but in some (rare!) c
u
rcumstances
It is very good, but in some (rare!) c
i
rcumstances
(SIT, PtP, NBMA NOARP links) it is handy to allow
(SIT, PtP, NBMA NOARP links) it is handy to allow
some exceptions. --ANK
some exceptions. --ANK
*/
*/
...
@@ -1365,10 +1365,10 @@ static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
...
@@ -1365,10 +1365,10 @@ static int rt6_mtu_change_route(struct rt6_info *rt, void *p_arg)
*/
*/
/*
/*
If new MTU is less than route PMTU, this new MTU will be the
If new MTU is less than route PMTU, this new MTU will be the
lowest MTU in the path, update the route PMTU to refect PMTU
lowest MTU in the path, update the route PMTU to ref
l
ect PMTU
decreases; if new MTU is greater than route PMTU, and the
decreases; if new MTU is greater than route PMTU, and the
old MTU is the lowest MTU in the path, update the route PMTU
old MTU is the lowest MTU in the path, update the route PMTU
to refect the increase. In this case if the other nodes' MTU
to ref
l
ect the increase. In this case if the other nodes' MTU
also have the lowest MTU, TOO BIG MESSAGE will be lead to
also have the lowest MTU, TOO BIG MESSAGE will be lead to
PMTU discouvery.
PMTU discouvery.
*/
*/
...
...
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