diff options
author | Brian Haley <brian.haley@hp.com> | 2007-08-25 02:16:08 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:48:32 -0400 |
commit | e773e4faa19c54c2f32ddd16add2919588488bd9 (patch) | |
tree | 316395a9c687155362913ec1c588c0217233f67e /net/ipv6/udp.c | |
parent | 6f4fc423b96c8fdf6f5c8b8ad79b75b7fb5a5c59 (diff) |
[IPV6]: Add v4mapped address inline
Add v4mapped address inline to avoid calls to ipv6_addr_type().
Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index c347f3e30e2..82ff26dd447 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
@@ -612,7 +612,7 @@ int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk, | |||
612 | daddr = NULL; | 612 | daddr = NULL; |
613 | 613 | ||
614 | if (daddr) { | 614 | if (daddr) { |
615 | if (ipv6_addr_type(daddr) == IPV6_ADDR_MAPPED) { | 615 | if (ipv6_addr_v4mapped(daddr)) { |
616 | struct sockaddr_in sin; | 616 | struct sockaddr_in sin; |
617 | sin.sin_family = AF_INET; | 617 | sin.sin_family = AF_INET; |
618 | sin.sin_port = sin6 ? sin6->sin6_port : inet->dport; | 618 | sin.sin_port = sin6 ? sin6->sin6_port : inet->dport; |