From: YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@xxxxxxxxxxxxxx>
Date: Mon, 24 Feb 2003 12:57:02 +0900 (JST)
Here's the patch for linux-2.5.62.
Hideaki-san, do you try to compile the patches you send
to me? :-)
-static void ipv6_wash_prefix(struct in6_addr *pfx, int plen)
+static void ipv6_addr_prefix(struct in6_addr *pfx,
+ const struct in6_addr *addr, int plen)
{
int b = plen&0x7;
- int o = (plen + 7)>>3;
+ int o = plen>>3;
+ memcpy(prefix, addr, o);
Where is the variable 'prefix' declared? You probably mean
'pfx->s6_addr' and that is the change I will make in my tree.
Thanks.
|