aboutsummaryrefslogtreecommitdiffstats
path: root/net/l2tp
diff options
context:
space:
mode:
Diffstat (limited to 'net/l2tp')
-rw-r--r--net/l2tp/l2tp_ip.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c
index cc673677c5de..962a607b51da 100644
--- a/net/l2tp/l2tp_ip.c
+++ b/net/l2tp/l2tp_ip.c
@@ -416,7 +416,6 @@ static int l2tp_ip_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *m
416 int rc; 416 int rc;
417 struct l2tp_ip_sock *lsa = l2tp_ip_sk(sk); 417 struct l2tp_ip_sock *lsa = l2tp_ip_sk(sk);
418 struct inet_sock *inet = inet_sk(sk); 418 struct inet_sock *inet = inet_sk(sk);
419 struct ip_options *opt = inet->opt;
420 struct rtable *rt = NULL; 419 struct rtable *rt = NULL;
421 int connected = 0; 420 int connected = 0;
422 __be32 daddr; 421 __be32 daddr;
@@ -471,9 +470,14 @@ static int l2tp_ip_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *m
471 rt = (struct rtable *) __sk_dst_check(sk, 0); 470 rt = (struct rtable *) __sk_dst_check(sk, 0);
472 471
473 if (rt == NULL) { 472 if (rt == NULL) {
473 struct ip_options_rcu *inet_opt;
474
475 inet_opt = rcu_dereference_protected(inet->inet_opt,
476 sock_owned_by_user(sk));
477
474 /* Use correct destination address if we have options. */ 478 /* Use correct destination address if we have options. */
475 if (opt && opt->srr) 479 if (inet_opt && inet_opt->opt.srr)
476 daddr = opt->faddr; 480 daddr = inet_opt->opt.faddr;
477 481
478 /* If this fails, retransmit mechanism of transport layer will 482 /* If this fails, retransmit mechanism of transport layer will
479 * keep trying until route appears or the connection times 483 * keep trying until route appears or the connection times