The patch titled e1000: endian fixes has been removed from the -mm tree. Its filename is e1000-endian-fixes.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: e1000: endian fixes From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: "Ronciak, John" <john.ronciak@xxxxxxxxx> Cc: Jesse Brandeburg <jesse.brandeburg@xxxxxxxxx> Acked-by: Auke Kok <auke-jan.h.kok@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/e1000/e1000_main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/net/e1000/e1000_main.c~e1000-endian-fixes drivers/net/e1000/e1000_main.c --- 25/drivers/net/e1000/e1000_main.c~e1000-endian-fixes Tue May 23 14:51:51 2006 +++ 25-akpm/drivers/net/e1000/e1000_main.c Tue May 23 14:51:51 2006 @@ -2420,7 +2420,7 @@ e1000_tso(struct e1000_adapter *adapter, hdr_len = ((skb->h.raw - skb->data) + (skb->h.th->doff << 2)); mss = skb_shinfo(skb)->tso_size; - if (skb->protocol == ntohs(ETH_P_IP)) { + if (skb->protocol == htons(ETH_P_IP)) { skb->nh.iph->tot_len = 0; skb->nh.iph->check = 0; skb->h.th->check = @@ -2899,7 +2899,7 @@ e1000_xmit_frame(struct sk_buff *skb, st /* Old method was to assume IPv4 packet by default if TSO was enabled. * 82571 hardware supports TSO capabilities for IPv6 as well... * no longer assume, we must. */ - if (likely(skb->protocol == ntohs(ETH_P_IP))) + if (likely(skb->protocol == htons(ETH_P_IP))) tx_flags |= E1000_TX_FLAGS_IPV4; e1000_tx_queue(adapter, tx_ring, tx_flags, _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are git-acpi.patch git-cifs.patch git-mtd.patch git-netdev-all.patch nfs-really-return-status-from-decode_recall_args.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 documentation-ioctl-messtxt-start-tree-wide-ioctl-registry.patch git-viro-bird-endian.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