diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-12 00:29:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-12 18:08:44 -0500 |
commit | 1d28f42c1bd4bb2363d88df74d0128b4da135b4a (patch) | |
tree | cb2e652fe79a2bc307e871bc2d3fa51cc8051e45 /net/ipv6/tcp_ipv6.c | |
parent | ca116922afa8cc5ad46b00c0a637b1cde5ca478a (diff) |
net: Put flowi_* prefix on AF independent members of struct flowi
I intend to turn struct flowi into a union of AF specific flowi
structs. There will be a common structure that each variant includes
first, much like struct sock_common.
This is the first step to move in that direction.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index e59a31c48baf..a3d1229b4004 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -242,12 +242,12 @@ static int tcp_v6_connect(struct sock *sk, struct sockaddr *uaddr, | |||
242 | if (!ipv6_addr_any(&np->rcv_saddr)) | 242 | if (!ipv6_addr_any(&np->rcv_saddr)) |
243 | saddr = &np->rcv_saddr; | 243 | saddr = &np->rcv_saddr; |
244 | 244 | ||
245 | fl.proto = IPPROTO_TCP; | 245 | fl.flowi_proto = IPPROTO_TCP; |
246 | ipv6_addr_copy(&fl.fl6_dst, &np->daddr); | 246 | ipv6_addr_copy(&fl.fl6_dst, &np->daddr); |
247 | ipv6_addr_copy(&fl.fl6_src, | 247 | ipv6_addr_copy(&fl.fl6_src, |
248 | (saddr ? saddr : &np->saddr)); | 248 | (saddr ? saddr : &np->saddr)); |
249 | fl.oif = sk->sk_bound_dev_if; | 249 | fl.flowi_oif = sk->sk_bound_dev_if; |
250 | fl.mark = sk->sk_mark; | 250 | fl.flowi_mark = sk->sk_mark; |
251 | fl.fl_ip_dport = usin->sin6_port; | 251 | fl.fl_ip_dport = usin->sin6_port; |
252 | fl.fl_ip_sport = inet->inet_sport; | 252 | fl.fl_ip_sport = inet->inet_sport; |
253 | 253 | ||
@@ -396,11 +396,11 @@ static void tcp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
396 | for now. | 396 | for now. |
397 | */ | 397 | */ |
398 | memset(&fl, 0, sizeof(fl)); | 398 | memset(&fl, 0, sizeof(fl)); |
399 | fl.proto = IPPROTO_TCP; | 399 | fl.flowi_proto = IPPROTO_TCP; |
400 | ipv6_addr_copy(&fl.fl6_dst, &np->daddr); | 400 | ipv6_addr_copy(&fl.fl6_dst, &np->daddr); |
401 | ipv6_addr_copy(&fl.fl6_src, &np->saddr); | 401 | ipv6_addr_copy(&fl.fl6_src, &np->saddr); |
402 | fl.oif = sk->sk_bound_dev_if; | 402 | fl.flowi_oif = sk->sk_bound_dev_if; |
403 | fl.mark = sk->sk_mark; | 403 | fl.flowi_mark = sk->sk_mark; |
404 | fl.fl_ip_dport = inet->inet_dport; | 404 | fl.fl_ip_dport = inet->inet_dport; |
405 | fl.fl_ip_sport = inet->inet_sport; | 405 | fl.fl_ip_sport = inet->inet_sport; |
406 | security_skb_classify_flow(skb, &fl); | 406 | security_skb_classify_flow(skb, &fl); |
@@ -487,12 +487,12 @@ static int tcp_v6_send_synack(struct sock *sk, struct request_sock *req, | |||
487 | int err; | 487 | int err; |
488 | 488 | ||
489 | memset(&fl, 0, sizeof(fl)); | 489 | memset(&fl, 0, sizeof(fl)); |
490 | fl.proto = IPPROTO_TCP; | 490 | fl.flowi_proto = IPPROTO_TCP; |
491 | ipv6_addr_copy(&fl.fl6_dst, &treq->rmt_addr); | 491 | ipv6_addr_copy(&fl.fl6_dst, &treq->rmt_addr); |
492 | ipv6_addr_copy(&fl.fl6_src, &treq->loc_addr); | 492 | ipv6_addr_copy(&fl.fl6_src, &treq->loc_addr); |
493 | fl.fl6_flowlabel = 0; | 493 | fl.fl6_flowlabel = 0; |
494 | fl.oif = treq->iif; | 494 | fl.flowi_oif = treq->iif; |
495 | fl.mark = sk->sk_mark; | 495 | fl.flowi_mark = sk->sk_mark; |
496 | fl.fl_ip_dport = inet_rsk(req)->rmt_port; | 496 | fl.fl_ip_dport = inet_rsk(req)->rmt_port; |
497 | fl.fl_ip_sport = inet_rsk(req)->loc_port; | 497 | fl.fl_ip_sport = inet_rsk(req)->loc_port; |
498 | security_req_classify_flow(req, &fl); | 498 | security_req_classify_flow(req, &fl); |
@@ -1055,8 +1055,8 @@ static void tcp_v6_send_response(struct sk_buff *skb, u32 seq, u32 ack, u32 win, | |||
1055 | 1055 | ||
1056 | __tcp_v6_send_check(buff, &fl.fl6_src, &fl.fl6_dst); | 1056 | __tcp_v6_send_check(buff, &fl.fl6_src, &fl.fl6_dst); |
1057 | 1057 | ||
1058 | fl.proto = IPPROTO_TCP; | 1058 | fl.flowi_proto = IPPROTO_TCP; |
1059 | fl.oif = inet6_iif(skb); | 1059 | fl.flowi_oif = inet6_iif(skb); |
1060 | fl.fl_ip_dport = t1->dest; | 1060 | fl.fl_ip_dport = t1->dest; |
1061 | fl.fl_ip_sport = t1->source; | 1061 | fl.fl_ip_sport = t1->source; |
1062 | security_skb_classify_flow(skb, &fl); | 1062 | security_skb_classify_flow(skb, &fl); |