| Submitter | Richard Weinberger |
|---|---|
| Date | June 18, 2012, 4:18 p.m. |
| Message ID | <1340036345-96726-9-git-send-email-richard@nod.at> |
| Download | mbox | patch |
| Permalink | /patch/165508/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/drivers/mtd/ubi/fastmap.c b/drivers/mtd/ubi/fastmap.c index bc29835..caefcb3 100644 --- a/drivers/mtd/ubi/fastmap.c +++ b/drivers/mtd/ubi/fastmap.c @@ -54,10 +54,6 @@ static int add_aeb(struct ubi_attach_info *ai, struct list_head *list, { struct ubi_ainf_peb *aeb; - list_for_each_entry(aeb, list, u.list) - if (aeb->pnum == pnum) - return 0; - aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL); if (!aeb) return -ENOMEM;
This reverts commit 95bbb0d1b2ea86103edfdd4b07ddfb058b1e0eff. That check is no longer needed. It must not happen that fastmap creates duplicates. Signed-off-by: Richard Weinberger <richard@nod.at> --- drivers/mtd/ubi/fastmap.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-)