diff options
| author | David S. Miller <davem@davemloft.net> | 2011-05-12 19:26:57 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-05-12 19:26:57 -0400 |
| commit | 10949550bd1e50cc91c0f5085f7080a44b0871fe (patch) | |
| tree | e5a1862145c488c6abf9d12cc52a1db90481823d | |
| parent | b2a103e6d0afa432dff66b36473c5a55b6b0376c (diff) | |
ipv4: Kill spurious opt->srr check in ip_options_rcv_srr().
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>
| -rw-r--r-- | net/ipv4/ip_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index 01fc40965848..e82c304806bb 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c | |||
| @@ -601,7 +601,7 @@ int ip_options_rcv_srr(struct sk_buff *skb) | |||
| 601 | unsigned long orefdst; | 601 | unsigned long orefdst; |
| 602 | int err; | 602 | int err; |
| 603 | 603 | ||
| 604 | if (!opt->srr || !rt) | 604 | if (!rt) |
| 605 | return 0; | 605 | return 0; |
| 606 | 606 | ||
| 607 | if (skb->pkt_type != PACKET_HOST) | 607 | if (skb->pkt_type != PACKET_HOST) |
