summaryrefslogtreecommitdiffstats
path: root/net/ipv6/route.c
diff options
context:
space:
mode:
authorUlrich Weber2010-02-26 00:28:58 +0100
committerDavid S. Miller2010-02-26 12:59:07 +0100
commit45bb00609022ecf1d97e083666c68c74d237b799 (patch)
tree9d8d632a9c2671ab9487ed1d73b8dc45de48b90b /net/ipv6/route.c
parentcnic: Update version to 2.1.1. (diff)
downloadkernel-qcow2-linux-45bb00609022ecf1d97e083666c68c74d237b799.tar.gz
kernel-qcow2-linux-45bb00609022ecf1d97e083666c68c74d237b799.tar.xz
kernel-qcow2-linux-45bb00609022ecf1d97e083666c68c74d237b799.zip
ipv6: Remove IPV6_ADDR_RESERVED
RFC 4291 section 2.4 states that all uncategorized addresses should be considered as Global Unicast. This will remove IPV6_ADDR_RESERVED completely and return IPV6_ADDR_UNICAST in ipv6_addr_type() instead. Signed-off-by: Ulrich Weber <uweber@astaro.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r--net/ipv6/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 88c0a5c49ae8..b08879e97f22 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1873,7 +1873,7 @@ static int ip6_pkt_drop(struct sk_buff *skb, u8 code, int ipstats_mib_noroutes)
switch (ipstats_mib_noroutes) {
case IPSTATS_MIB_INNOROUTES:
type = ipv6_addr_type(&ipv6_hdr(skb)->daddr);
- if (type == IPV6_ADDR_ANY || type == IPV6_ADDR_RESERVED) {
+ if (type == IPV6_ADDR_ANY) {
IP6_INC_STATS(dev_net(dst->dev), ip6_dst_idev(dst),
IPSTATS_MIB_INADDRERRORS);
break;