* [PATCH]ipv6:remove useless check
@ 2009-04-14 1:51 Yang Hongyang
2009-04-14 3:31 ` Shan Wei
0 siblings, 1 reply; 3+ messages in thread
From: Yang Hongyang @ 2009-04-14 1:51 UTC (permalink / raw)
To: netdev@vger.kernel.org, David Miller
After switch (rthdr->type) {...},the check below is completely useless.Because:
if the type is 2,then hdrlen must be 2 and segments_left must be 1,clearly the
check is redundant;if the type is not 2,then goto sticky_done,the check is useless
too.
Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
---
net/ipv6/ipv6_sockglue.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c
index d31df0f..a7fdf9a 100644
--- a/net/ipv6/ipv6_sockglue.c
+++ b/net/ipv6/ipv6_sockglue.c
@@ -380,10 +380,6 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname,
default:
goto sticky_done;
}
-
- if ((rthdr->hdrlen & 1) ||
- (rthdr->hdrlen >> 1) != rthdr->segments_left)
- goto sticky_done;
}
retv = 0;
--
1.6.0.3
--
Regards
Yang Hongyang
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH]ipv6:remove useless check
2009-04-14 1:51 [PATCH]ipv6:remove useless check Yang Hongyang
@ 2009-04-14 3:31 ` Shan Wei
2009-04-14 9:22 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Shan Wei @ 2009-04-14 3:31 UTC (permalink / raw)
To: Yang Hongyang; +Cc: netdev@vger.kernel.org, David Miller, brian.haley
Yang Hongyang said:
> After switch (rthdr->type) {...},the check below is completely useless.Because:
> if the type is 2,then hdrlen must be 2 and segments_left must be 1,clearly the
> check is redundant;if the type is not 2,then goto sticky_done,the check is useless
> too.
>
Add CC Brian Haley.
The check is defined only for Type 0 Routing header in section 4.4 of RFC2460:
Hdr Ext Len 8-bit unsigned integer. Length of the Routing
header in 8-octet units, not including the first
8 octets. For the Type 0 Routing header, Hdr
Ext Len is equal to two times the number of
addresses in the header.
Now, Type 0 Routing header has been removed, the check is redundant.
Reviewed-by: Shan Wei <shanwei@cn.fujitsu.com>
> Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
>
> ---
> net/ipv6/ipv6_sockglue.c | 4 ----
> 1 files changed, 0 insertions(+), 4 deletions(-)
>
> diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c
> index d31df0f..a7fdf9a 100644
> --- a/net/ipv6/ipv6_sockglue.c
> +++ b/net/ipv6/ipv6_sockglue.c
> @@ -380,10 +380,6 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname,
> default:
> goto sticky_done;
> }
> -
> - if ((rthdr->hdrlen & 1) ||
> - (rthdr->hdrlen >> 1) != rthdr->segments_left)
> - goto sticky_done;
> }
>
> retv = 0;
--
Best Regards
Shan Wei
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH]ipv6:remove useless check
2009-04-14 3:31 ` Shan Wei
@ 2009-04-14 9:22 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2009-04-14 9:22 UTC (permalink / raw)
To: shanwei; +Cc: yanghy, netdev, brian.haley
From: Shan Wei <shanwei@cn.fujitsu.com>
Date: Tue, 14 Apr 2009 11:31:40 +0800
> Yang Hongyang said:
>> After switch (rthdr->type) {...},the check below is completely useless.Because:
>> if the type is 2,then hdrlen must be 2 and segments_left must be 1,clearly the
>> check is redundant;if the type is not 2,then goto sticky_done,the check is useless
>> too.
>>
>
> Add CC Brian Haley.
>
> The check is defined only for Type 0 Routing header in section 4.4 of RFC2460:
>
> Hdr Ext Len 8-bit unsigned integer. Length of the Routing
> header in 8-octet units, not including the first
> 8 octets. For the Type 0 Routing header, Hdr
> Ext Len is equal to two times the number of
> addresses in the header.
>
> Now, Type 0 Routing header has been removed, the check is redundant.
>
> Reviewed-by: Shan Wei <shanwei@cn.fujitsu.com>
>
>> Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
Applied, thanks everyone.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-04-14 9:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-14 1:51 [PATCH]ipv6:remove useless check Yang Hongyang
2009-04-14 3:31 ` Shan Wei
2009-04-14 9:22 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).