From: David S. Miller <hidden> Date: 2002-10-07 18:57:03
From: YOSHIFUJI Hideaki / 吉藤英明 [off-list ref]
Date: Tue, 08 Oct 2002 00:05:59 +0900 (JST)
Prefix length for link-local address should be 64, not 10.
This patch fixes prefix length of link-local address.
Following patch is against 2.4.19.
Patch is applied, thank you.
BTW, we start to run into conflicts now and most of USAGI patches now
I need to apply some parts by hand. Here is one example, with this
patch:
@@ -783,7 +783,7 @@
struct in6_addr addr;
ipv6_addr_set(&addr, __constant_htonl(0xFE800000), 0, 0, 0);
- addrconf_prefix_route(&addr, 10, dev, 0, RTF_ADDRCONF);
+ addrconf_prefix_route(&addr, 64, dev, 0, RTF_ADDRCONF);
}
static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
Note in this hunk the __constant_htonl() which was transformed
to plain htonl() by already accepted USAGI patch.
It is not such a big deal now, but it may soon become larger as
bigger USAGI patches are applied. We will need to synchronize
at some point.
In article [off-list ref] (at Mon, 07 Oct 2002 11:55:30 -0700 (PDT)), "David S. Miller" [off-list ref] says:
BTW, we start to run into conflicts now and most of USAGI patches now
I need to apply some parts by hand. Here is one example, with this
patch:
:
It is not such a big deal now, but it may soon become larger as
bigger USAGI patches are applied. We will need to synchronize
at some point.
Agreed.
So,... What kind of patches do you prefer, now?
- on top of plain kernel (2.4.19, 2.4.20, 2.4.21-preXX, or whatever)
- plain kernel + on top of our whole patch?
- ???
--
Hideaki YOSHIFUJI @ USAGI Project [off-list ref]
GPG FP: 9022 65EB 1ECF 3AD1 0BDF 80D8 4807 F894 E062 0EEA
From: David S. Miller <hidden> Date: 2002-10-08 19:43:21
From: YOSHIFUJI Hideaki / 吉藤英明 [off-list ref]
Date: Tue, 08 Oct 2002 09:37:21 +0900 (JST)
So,... What kind of patches do you prefer, now?
- on top of plain kernel (2.4.19, 2.4.20, 2.4.21-preXX, or whatever)
- plain kernel + on top of our whole patch?
- ???
If you send patches against 2.4.20-pre9, it would be fine.