Re: [PATCH] IPv6: Functions Clean-up

David S. Miller (davem@redhat.com)
Sun, 23 Feb 2003 22:54:26 -0800 (PST)


From: YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>
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.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/