aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-20 17:22:26 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:27:00 -0800
commit74af924ab6562717ef9aab1061ec05bbbf31d979 (patch)
tree2b54dcf770bfb94396c76931026189b908dc940f
parent[SCTP]: sctp_make_asconf_update_ip() and sctp_find_unmatch_addr(). (diff)
downloadlinux-dev-74af924ab6562717ef9aab1061ec05bbbf31d979.tar.xz
linux-dev-74af924ab6562717ef9aab1061ec05bbbf31d979.zip
[SCTP]: ->a_h is gone now.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/net/sctp/structs.h1
-rw-r--r--net/sctp/bind_addr.c2
-rw-r--r--net/sctp/ipv6.c1
-rw-r--r--net/sctp/protocol.c1
4 files changed, 0 insertions, 5 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 9bb5c038b95a..bb857957a88a 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -757,7 +757,6 @@ const union sctp_addr *sctp_source(const struct sctp_chunk *chunk);
struct sctp_sockaddr_entry {
struct list_head list;
union sctp_addr a;
- union sctp_addr a_h;
__u8 use_as_src;
};
diff --git a/net/sctp/bind_addr.c b/net/sctp/bind_addr.c
index d6664dd30e56..00994158e496 100644
--- a/net/sctp/bind_addr.c
+++ b/net/sctp/bind_addr.c
@@ -163,8 +163,6 @@ int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
if (!addr->a.v4.sin_port)
addr->a.v4.sin_port = htons(bp->port);
- flip_to_h(&addr->a_h, &addr->a);
-
addr->use_as_src = use_as_src;
INIT_LIST_HEAD(&addr->list);
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c
index b3fa426bd1dc..04d5e13e9183 100644
--- a/net/sctp/ipv6.c
+++ b/net/sctp/ipv6.c
@@ -336,7 +336,6 @@ static void sctp_v6_copy_addrlist(struct list_head *addrlist,
addr->a.v6.sin6_port = 0;
addr->a.v6.sin6_addr = ifp->addr;
addr->a.v6.sin6_scope_id = dev->ifindex;
- addr->a_h = addr->a;
INIT_LIST_HEAD(&addr->list);
list_add_tail(&addr->list, addrlist);
}
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index c20f05b3308f..807c97da33a5 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -153,7 +153,6 @@ static void sctp_v4_copy_addrlist(struct list_head *addrlist,
addr->a.v4.sin_family = AF_INET;
addr->a.v4.sin_port = 0;
addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
- addr->a_h = addr->a;
list_add_tail(&addr->list, addrlist);
}
}