diff options
| author | David S. Miller <davem@davemloft.net> | 2011-03-02 14:31:35 -0800 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-03-02 14:31:35 -0800 | 
| commit | b23dd4fe42b455af5c6e20966b7d6959fa8352ea (patch) | |
| tree | bf97323eae9a8d084170e573ff2c0c40bc72c3cd /net/ipv4/inet_connection_sock.c | |
| parent | 452edd598f60522c11f7f88fdbab27eb36509d1a (diff) | |
| download | olio-linux-3.10-b23dd4fe42b455af5c6e20966b7d6959fa8352ea.tar.xz olio-linux-3.10-b23dd4fe42b455af5c6e20966b7d6959fa8352ea.zip  | |
ipv4: Make output route lookup return rtable directly.
Instead of on the stack.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_connection_sock.c')
| -rw-r--r-- | net/ipv4/inet_connection_sock.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index 7f85d4aec26..e4e301a61c5 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -369,7 +369,8 @@ struct dst_entry *inet_csk_route_req(struct sock *sk,  	struct net *net = sock_net(sk);  	security_req_classify_flow(req, &fl); -	if (ip_route_output_flow(net, &rt, &fl, sk)) +	rt = ip_route_output_flow(net, &fl, sk); +	if (IS_ERR(rt))  		goto no_route;  	if (opt && opt->is_strictroute && rt->rt_dst != rt->rt_gateway)  		goto route_err;  |