The patch titled
     mtd: bdi init hooks
has been removed from the -mm tree.  Its filename was
     mtd-bdi-init-hooks.patch

This patch was dropped because it is obsolete

------------------------------------------------------
Subject: mtd: bdi init hooks
From: Peter Zijlstra <[EMAIL PROTECTED]>

split off because the relevant mtd changes seem particular to -mm

Signed-off-by: Peter Zijlstra <[EMAIL PROTECTED]>
Cc: David Woodhouse <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/mtd/mtdcore.c |    9 +++++++++
 1 files changed, 9 insertions(+)

diff -puN drivers/mtd/mtdcore.c~mtd-bdi-init-hooks drivers/mtd/mtdcore.c
--- a/drivers/mtd/mtdcore.c~mtd-bdi-init-hooks
+++ a/drivers/mtd/mtdcore.c
@@ -47,6 +47,7 @@ static LIST_HEAD(mtd_notifiers);
 int add_mtd_device(struct mtd_info *mtd)
 {
        int i;
+       int err;
 
        BUG_ON(mtd->writesize == 0);
        mutex_lock(&mtd_table_mutex);
@@ -68,6 +69,9 @@ int add_mtd_device(struct mtd_info *mtd)
                                               "writes may not work\n",
                                               mtd->name);
                        }
+       err = bdi_init(mtd->backing_dev_info);
+       if (err)
+               return 1;
 
                        DEBUG(0, "mtd: Giving out device %d to %s\n",i, 
mtd->name);
                        /* No need to get a refcount on the module containing
@@ -87,6 +91,7 @@ int add_mtd_device(struct mtd_info *mtd)
                }
 
        mutex_unlock(&mtd_table_mutex);
+       bdi_destroy(mtd->backing_dev_info);
        return 1;
 }
 
@@ -129,6 +134,10 @@ int del_mtd_device (struct mtd_info *mtd
        }
 
        mutex_unlock(&mtd_table_mutex);
+
+       if (mtd->backing_dev_info)
+               bdi_destroy(mtd->backing_dev_info);
+
        return ret;
 }
 
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

radix-tree-use-indirect-bit.patch
nfs-remove-congestion_end.patch
lib-percpu_counter_add.patch
lib-percpu_counter_sub.patch
lib-percpu_counter-variable-batch.patch
lib-make-percpu_counter_add-take-s64.patch
lib-percpu_counter_set.patch
lib-percpu_counter_sum_positive.patch
lib-percpu_count_sum.patch
lib-percpu_counter_init-error-handling.patch
lib-percpu_counter_init_irq.patch
mm-bdi-init-hooks.patch
mtd-bdi-init-hooks.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
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
task-containersv11-shared-container-subsystem-group-arrays-avoid-lockdep-warning.patch
task-containersv11-shared-container-subsystem-group-arrays-include-fix.patch
workqueue-debug-flushing-deadlocks-with-lockdep.patch
workqueue-debug-work-related-deadlocks-with-lockdep.patch
memory-controller-add-documentation.patch
memory-controller-resource-counters-v7.patch
memory-controller-containers-setup-v7.patch
memory-controller-accounting-setup-v7.patch
memory-controller-memory-accounting-v7.patch
memory-controller-task-migration-v7.patch
memory-controller-add-per-container-lru-and-reclaim-v7.patch
memory-controller-add-per-container-lru-and-reclaim-v7-fix.patch
memory-controller-improve-user-interface.patch
memory-controller-oom-handling-v7.patch
memory-controller-add-switch-to-control-what-type-of-pages-to-limit-v7.patch
memory-controller-make-page_referenced-container-aware-v7.patch
memory-controller-make-charging-gfp-mask-aware.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to