The patch titled mtd: clean up the backing_dev_info usage has been removed from the -mm tree. Its filename was mtd-clean-up-the-backing_dev_info-usage.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ Subject: mtd: clean up the backing_dev_info usage From: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Give each mtd device its own backing_dev_info instance. Signed-off-by: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mtd/mtdcore.c | 8 +++++--- include/linux/mtd/mtd.h | 2 ++ 2 files changed, 7 insertions(+), 3 deletions(-) diff -puN drivers/mtd/mtdcore.c~mtd-clean-up-the-backing_dev_info-usage drivers/mtd/mtdcore.c --- a/drivers/mtd/mtdcore.c~mtd-clean-up-the-backing_dev_info-usage +++ a/drivers/mtd/mtdcore.c @@ -19,6 +19,7 @@ #include <linux/init.h> #include <linux/mtd/compatmac.h> #include <linux/proc_fs.h> +#include <linux/backing-dev.h> #include <linux/mtd/mtd.h> #include "internal.h" @@ -53,15 +54,16 @@ int add_mtd_device(struct mtd_info *mtd) if (!mtd->backing_dev_info) { switch (mtd->type) { case MTD_RAM: - mtd->backing_dev_info = &mtd_bdi_rw_mappable; + mtd->mtd_backing_dev_info = mtd_bdi_rw_mappable; break; case MTD_ROM: - mtd->backing_dev_info = &mtd_bdi_ro_mappable; + mtd->mtd_backing_dev_info = mtd_bdi_ro_mappable; break; default: - mtd->backing_dev_info = &mtd_bdi_unmappable; + mtd->mtd_backing_dev_info = mtd_bdi_unmappable; break; } + mtd->backing_dev_info = &mtd->mtd_backing_dev_info; } err = bdi_init(mtd->backing_dev_info); if (err) diff -puN include/linux/mtd/mtd.h~mtd-clean-up-the-backing_dev_info-usage include/linux/mtd/mtd.h --- a/include/linux/mtd/mtd.h~mtd-clean-up-the-backing_dev_info-usage +++ a/include/linux/mtd/mtd.h @@ -13,6 +13,7 @@ #include <linux/module.h> #include <linux/uio.h> #include <linux/notifier.h> +#include <linux/backing-dev.h> #include <linux/mtd/compatmac.h> #include <mtd/mtd-abi.h> @@ -154,6 +155,7 @@ struct mtd_info { * - provides mmap capabilities */ struct backing_dev_info *backing_dev_info; + struct backing_dev_info mtd_backing_dev_info; int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); _ Patches currently in -mm which might be from a.p.zijlstra@xxxxxxxxx are radix-tree-use-indirect-bit.patch mtd-clean-up-the-backing_dev_info-usage.patch mtd-give-mtdconcat-devices-their-own-backing_dev_info.patch mm-scalable-bdi-statistics-counters.patch mm-count-reclaimable-pages-per-bdi.patch mm-count-writeback-pages-per-bdi.patch mm-expose-bdi-statistics-in-sysfs.patch lib-floating-proportions.patch lib-floating-proportions-_single.patch lib-floating-proportions-_single-tidy.patch mm-per-device-dirty-threshold.patch mm-dirty-balancing-for-tasks.patch debug-sysfs-files-for-the-current-ratio-size-total.patch intel-iommu-dmar-detection-and-parsing-logic.patch intel-iommu-pci-generic-helper-function.patch intel-iommu-clflush_cache_range-now-takes-size-param.patch intel-iommu-iova-allocation-and-management-routines.patch intel-iommu-intel-iommu-driver.patch intel-iommu-avoid-memory-allocation-failures-in-dma-map-api-calls.patch intel-iommu-intel-iommu-cmdline-option-forcedac.patch intel-iommu-dmar-fault-handling-support.patch intel-iommu-iommu-gfx-workaround.patch intel-iommu-iommu-floppy-workaround.patch task-containersv11-add-procfs-interface-containers-bdi-init-hooks.patch workqueue-debug-flushing-deadlocks-with-lockdep.patch workqueue-debug-work-related-deadlocks-with-lockdep.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