Signed-off-by: Richard Weinberger <rich...@nod.at>
---
 drivers/mtd/ubi/attach.c |   18 ++++++++++--------
 1 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/drivers/mtd/ubi/attach.c b/drivers/mtd/ubi/attach.c
index 106aa01..02505ff 100644
--- a/drivers/mtd/ubi/attach.c
+++ b/drivers/mtd/ubi/attach.c
@@ -817,8 +817,7 @@ out_unlock:
  * successfully handled and a negative error code in case of failure.
  */
 static int scan_peb(struct ubi_device *ubi, struct ubi_attach_info *ai,
-                   int pnum, int *vid, unsigned long long *sqnum,
-                   int find_fastmap)
+                   int pnum, int *vid, unsigned long long *sqnum)
 {
        long long uninitialized_var(ec);
        int err, bitflips = 0, vol_id = -1, ec_err = 0;
@@ -997,15 +996,18 @@ static int scan_peb(struct ubi_device *ubi, struct 
ubi_attach_info *ai,
        if (sqnum)
                *sqnum = be64_to_cpu(vidh->sqnum);
 
-       if (!find_fastmap &&
-          (vol_id > UBI_MAX_VOLUMES && vol_id != UBI_LAYOUT_VOLUME_ID)) {
+       if (vol_id > UBI_MAX_VOLUMES && vol_id != UBI_LAYOUT_VOLUME_ID) {
                int lnum = be32_to_cpu(vidh->lnum);
 
                /* Unsupported internal volume */
                switch (vidh->compat) {
                case UBI_COMPAT_DELETE:
-                       ubi_msg("\"delete\" compatible internal volume %d:%d"
-                               " found, will remove it", vol_id, lnum);
+                       if (vol_id != UBI_FM_SB_VOLUME_ID
+                           && vol_id != UBI_FM_DATA_VOLUME_ID) {
+                               ubi_msg("\"delete\" compatible internal volume"
+                                       " %d:%d found, will remove it",
+                                       vol_id, lnum);
+                       }
                        err = add_to_list(ai, pnum, vol_id, lnum,
                                          ec, 1, &ai->erase);
                        if (err)
@@ -1247,7 +1249,7 @@ static int scan_all(struct ubi_device *ubi, struct 
ubi_attach_info *ai, int star
                cond_resched();
 
                dbg_gen("process PEB %d", pnum);
-               err = scan_peb(ubi, ai, pnum, NULL, NULL, 0);
+               err = scan_peb(ubi, ai, pnum, NULL, NULL);
                if (err < 0)
                        goto out_vidh;
        }
@@ -1332,7 +1334,7 @@ static int scan_fast(struct ubi_device *ubi, struct 
ubi_attach_info *ai)
                cond_resched();
 
                dbg_gen("process PEB %d", pnum);
-               err = scan_peb(ubi, ai, pnum, &vol_id, &sqnum, 1);
+               err = scan_peb(ubi, ai, pnum, &vol_id, &sqnum);
                if (err < 0)
                        goto out_vidh;
 
-- 
1.7.6.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to