ipv4: Kill spurious opt->srr check in ip_options_rcv_srr().
authorDavid S. Miller <davem@davemloft.net>
Thu, 12 May 2011 23:26:57 +0000 (19:26 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 May 2011 23:26:57 +0000 (19:26 -0400)
All call sites conditionalize the call to ip_options_rcv_srr()
with a check of opt->srr, so no need to check it again there.

Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ip_options.c

index 01fc409..e82c304 100644 (file)
@@ -601,7 +601,7 @@ int ip_options_rcv_srr(struct sk_buff *skb)
        unsigned long orefdst;
        int err;
 
-       if (!opt->srr || !rt)
+       if (!rt)
                return 0;
 
        if (skb->pkt_type != PACKET_HOST)