aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ip_options.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-03-22 16:35:00 -0700
committerDavid S. Miller <davem@davemloft.net>2008-03-22 16:35:00 -0700
commit10fe7d85e2e4042f703a10bed4123f2105eadad2 (patch)
tree7698a8024571f2dd61559bad298ac397445ea693 /net/ipv4/ip_options.c
parent[TCP]: TCP_DEFER_ACCEPT updates - process as established (diff)
downloadlinux-dev-10fe7d85e2e4042f703a10bed4123f2105eadad2.tar.xz
linux-dev-10fe7d85e2e4042f703a10bed4123f2105eadad2.zip
[IPV4]: Remove unnecessary check for opt->is_data in ip_options_compile.
There is the only way to reach ip_options compile with opt != NULL: ip_options_get_finish opt->is_data = 1; ip_options_compile(opt, NULL) So, checking for is_data inside opt != NULL branch is not needed. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_options.c')
-rw-r--r--net/ipv4/ip_options.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c
index df93a9c2efda..7e94bf850a07 100644
--- a/net/ipv4/ip_options.c
+++ b/net/ipv4/ip_options.c
@@ -267,8 +267,7 @@ int ip_options_compile(struct ip_options * opt, struct sk_buff * skb)
optptr = iph + sizeof(struct iphdr);
opt->is_data = 0;
} else {
- optptr = opt->is_data ? opt->__data :
- (unsigned char *)&(ip_hdr(skb)[1]);
+ optptr = opt->__data;
iph = optptr - sizeof(struct iphdr);
}