The patch titled lguest: netdriver tidyups and a bugfix has been removed from the -mm tree. Its filename was lguest-the-net-driver-tidyups-update.patch This patch was dropped because it was folded into lguest-the-net-driver.patch ------------------------------------------------------ Subject: lguest: netdriver tidyups and a bugfix From: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Feedback from Jeff Garzik: 1) Use netdev_priv instead of dev->priv. 2) Check for ioremap failure 3) iounmap on failure. 4) Wrap SEND_DMA and BIND_DMA calls 5) Don't set NETIF_F_SG unless we set NETIF_F_NO_CSUM 6) Use SET_NETDEV_DEV() 7) Don't set dev->irq, mem_start & mem_end (deprecated) Feedback from Chrisoph Hellwig: 8) Use lguest_map()/lguest_unmap() helpers instead of ioremap/iounmap. Signed-off-by: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/lguest_net.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN drivers/net/lguest_net.c~lguest-the-net-driver-tidyups-update drivers/net/lguest_net.c --- a/drivers/net/lguest_net.c~lguest-the-net-driver-tidyups-update +++ a/drivers/net/lguest_net.c @@ -22,7 +22,6 @@ #include <linux/module.h> #include <linux/mm_types.h> #include <linux/lguest_bus.h> -#include <asm/io.h> #define SHARED_SIZE PAGE_SIZE #define MAX_LANS 4 @@ -301,7 +300,7 @@ static int lguestnet_probe(struct lguest info->mapsize = PAGE_SIZE * desc->num_pages; info->peer_phys = ((unsigned long)desc->pfn << PAGE_SHIFT); info->lgdev = lgdev; - info->peer = (__force void *)ioremap(info->peer_phys, info->mapsize); + info->peer = lguest_map(info->peer_phys, desc->num_pages); if (!info->peer) { err = -ENOMEM; goto free; @@ -331,7 +330,7 @@ static int lguestnet_probe(struct lguest unregister: unregister_netdev(dev); unmap: - iounmap((__force void __iomem *)info->peer); + lguest_unmap(info->peer); free: free_netdev(dev); return err; _ Patches currently in -mm which might be from rusty@xxxxxxxxxxxxxxx are git-kbuild.patch paravirt-helper-to-disable-all-io-space.patch paravirt-helper-to-disable-all-io-space-fix.patch xen-disable-all-non-virtual-devices.patch mm-clean-up-and-kernelify-shrinker-registration.patch use-menuconfig-objects-ii-module-menu.patch fix-stop_machine_run-problem-with-naughty-real-time-process.patch cpu-hotplug-fix-ksoftirqd-termination-on-cpu-hotplug-with-naughty-realtime-process.patch cpu-hotplug-fix-ksoftirqd-termination-on-cpu-hotplug-with-naughty-realtime-process-fix.patch lguest-export-symbols-for-lguest-as-a-module.patch lguest-the-guest-code.patch lguest-the-host-code.patch lguest-the-asm-offsets.patch lguest-the-makefile-and-kconfig.patch lguest-the-console-driver.patch lguest-the-net-driver.patch lguest-the-net-driver-tidyups-update.patch lguest-the-net-driver-include-fix.patch lguest-the-block-driver.patch lguest-the-block-driver-tidyups.patch lguest-the-block-driver-tidyups-update.patch lguest-the-documentation-example-launcher.patch lguest-the-documentation-example-launcher-example-launcher-fix.patch lguest-dont-signal-like-crazy-use-lhreq_break-command-doc.patch lguest-documentation-infrastructure-and-chapter-i.patch mm-clean-up-and-kernelify-shrinker-registration-reiser4.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