The patch titled ipv6: endian fix has been added to the -mm tree. Its filename is ipv6-endian-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- net/ipv6/netfilter/ip6t_eui64.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN net/ipv6/netfilter/ip6t_eui64.c~ipv6-endian-fix net/ipv6/netfilter/ip6t_eui64.c --- 25/net/ipv6/netfilter/ip6t_eui64.c~ipv6-endian-fix Tue May 16 11:49:29 2006 +++ 25-akpm/net/ipv6/netfilter/ip6t_eui64.c Tue May 16 11:49:29 2006 @@ -40,7 +40,7 @@ match(const struct sk_buff *skb, memset(eui64, 0, sizeof(eui64)); - if (eth_hdr(skb)->h_proto == ntohs(ETH_P_IPV6)) { + if (eth_hdr(skb)->h_proto == htons(ETH_P_IPV6)) { if (skb->nh.ipv6h->version == 0x6) { memcpy(eui64, eth_hdr(skb)->h_source, 3); memcpy(eui64 + 5, eth_hdr(skb)->h_source + 3, 3); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch selinux-endian-fix.patch git-acpi.patch cifs-endian-fix.patch git-mtd.patch e1000-endian-fixes.patch ipv6-endian-fix.patch x86-dont-trigger-full-rebuild-via-config_mtrr.patch dont-trigger-full-rebuild-via-config_x86_mce.patch remove-config_parport_arc-drivers-parport-parport_arcc.patch two-additions-to-linux-documentation-ioctl-numbertxt.patch more-bug_on-conversion.patch reiser4.patch reiser4-gfp_t-annotations.patch documentation-ioctl-messtxt-start-tree-wide-ioctl-registry.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html