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/ipv4/raw.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/ipv4/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index 467d570d087a..b42b7cd56c03 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c | |||
@@ -418,7 +418,7 @@ static int raw_probe_proto_opt(struct flowi *fl, struct msghdr *msg) | |||
418 | if (!iov) | 418 | if (!iov) |
419 | continue; | 419 | continue; |
420 | 420 | ||
421 | switch (fl->proto) { | 421 | switch (fl->flowi_proto) { |
422 | case IPPROTO_ICMP: | 422 | case IPPROTO_ICMP: |
423 | /* check if one-byte field is readable or not. */ | 423 | /* check if one-byte field is readable or not. */ |
424 | if (iov->iov_base && iov->iov_len < 1) | 424 | if (iov->iov_base && iov->iov_len < 1) |
@@ -548,14 +548,14 @@ static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, | |||
548 | } | 548 | } |
549 | 549 | ||
550 | { | 550 | { |
551 | struct flowi fl = { .oif = ipc.oif, | 551 | struct flowi fl = { .flowi_oif = ipc.oif, |
552 | .mark = sk->sk_mark, | 552 | .flowi_mark = sk->sk_mark, |
553 | .fl4_dst = daddr, | 553 | .fl4_dst = daddr, |
554 | .fl4_src = saddr, | 554 | .fl4_src = saddr, |
555 | .fl4_tos = tos, | 555 | .fl4_tos = tos, |
556 | .proto = inet->hdrincl ? IPPROTO_RAW : | 556 | .flowi_proto = inet->hdrincl ? IPPROTO_RAW : |
557 | sk->sk_protocol, | 557 | sk->sk_protocol, |
558 | .flags = FLOWI_FLAG_CAN_SLEEP, | 558 | .flowi_flags = FLOWI_FLAG_CAN_SLEEP, |
559 | }; | 559 | }; |
560 | if (!inet->hdrincl) { | 560 | if (!inet->hdrincl) { |
561 | err = raw_probe_proto_opt(&fl, msg); | 561 | err = raw_probe_proto_opt(&fl, msg); |