2 * Copyright (c) International Business Machines Corp., 2006
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author: Artem Bityutskiy (Битюцкий Артём)
22 * This file contains implementation of volume creation, deletion, updating and
26 #include <linux/err.h>
27 #include <asm/div64.h>
30 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
31 static void paranoid_check_volumes(struct ubi_device *ubi);
33 #define paranoid_check_volumes(ubi)
36 static ssize_t vol_attribute_show(struct device *dev,
37 struct device_attribute *attr, char *buf);
39 /* Device attributes corresponding to files in '/<sysfs>/class/ubi/ubiX_Y' */
40 static struct device_attribute vol_reserved_ebs =
41 __ATTR(reserved_ebs, S_IRUGO, vol_attribute_show, NULL);
42 static struct device_attribute vol_type =
43 __ATTR(type, S_IRUGO, vol_attribute_show, NULL);
44 static struct device_attribute vol_name =
45 __ATTR(name, S_IRUGO, vol_attribute_show, NULL);
46 static struct device_attribute vol_corrupted =
47 __ATTR(corrupted, S_IRUGO, vol_attribute_show, NULL);
48 static struct device_attribute vol_alignment =
49 __ATTR(alignment, S_IRUGO, vol_attribute_show, NULL);
50 static struct device_attribute vol_usable_eb_size =
51 __ATTR(usable_eb_size, S_IRUGO, vol_attribute_show, NULL);
52 static struct device_attribute vol_data_bytes =
53 __ATTR(data_bytes, S_IRUGO, vol_attribute_show, NULL);
54 static struct device_attribute vol_upd_marker =
55 __ATTR(upd_marker, S_IRUGO, vol_attribute_show, NULL);
58 * "Show" method for files in '/<sysfs>/class/ubi/ubiX_Y/'.
60 * Consider a situation:
61 * A. process 1 opens a sysfs file related to volume Y, say
62 * /<sysfs>/class/ubi/ubiX_Y/reserved_ebs;
63 * B. process 2 removes volume Y;
64 * C. process 1 starts reading the /<sysfs>/class/ubi/ubiX_Y/reserved_ebs file;
66 * What we want to do in a situation like that is to return error when the file
67 * is read. This is done by means of the 'removed' flag and the 'vol_lock' of
68 * the UBI volume description object.
70 static ssize_t vol_attribute_show(struct device *dev,
71 struct device_attribute *attr, char *buf)
74 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev);
76 spin_lock(&vol->ubi->volumes_lock);
78 spin_unlock(&vol->ubi->volumes_lock);
81 if (attr == &vol_reserved_ebs)
82 ret = sprintf(buf, "%d\n", vol->reserved_pebs);
83 else if (attr == &vol_type) {
85 tp = vol->vol_type == UBI_DYNAMIC_VOLUME ? "dynamic" : "static";
86 ret = sprintf(buf, "%s\n", tp);
87 } else if (attr == &vol_name)
88 ret = sprintf(buf, "%s\n", vol->name);
89 else if (attr == &vol_corrupted)
90 ret = sprintf(buf, "%d\n", vol->corrupted);
91 else if (attr == &vol_alignment)
92 ret = sprintf(buf, "%d\n", vol->alignment);
93 else if (attr == &vol_usable_eb_size) {
94 ret = sprintf(buf, "%d\n", vol->usable_leb_size);
95 } else if (attr == &vol_data_bytes)
96 ret = sprintf(buf, "%lld\n", vol->used_bytes);
97 else if (attr == &vol_upd_marker)
98 ret = sprintf(buf, "%d\n", vol->upd_marker);
101 spin_unlock(&vol->ubi->volumes_lock);
105 /* Release method for volume devices */
106 static void vol_release(struct device *dev)
108 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev);
109 ubi_assert(vol->removed);
114 * volume_sysfs_init - initialize sysfs for new volume.
115 * @ubi: UBI device description object
116 * @vol: volume description object
118 * This function returns zero in case of success and a negative error code in
121 * Note, this function does not free allocated resources in case of failure -
122 * the caller does it. This is because this would cause release() here and the
125 static int volume_sysfs_init(struct ubi_device *ubi, struct ubi_volume *vol)
129 err = device_create_file(&vol->dev, &vol_reserved_ebs);
132 err = device_create_file(&vol->dev, &vol_type);
135 err = device_create_file(&vol->dev, &vol_name);
138 err = device_create_file(&vol->dev, &vol_corrupted);
141 err = device_create_file(&vol->dev, &vol_alignment);
144 err = device_create_file(&vol->dev, &vol_usable_eb_size);
147 err = device_create_file(&vol->dev, &vol_data_bytes);
150 err = device_create_file(&vol->dev, &vol_upd_marker);
157 * volume_sysfs_close - close sysfs for a volume.
158 * @vol: volume description object
160 static void volume_sysfs_close(struct ubi_volume *vol)
162 device_remove_file(&vol->dev, &vol_upd_marker);
163 device_remove_file(&vol->dev, &vol_data_bytes);
164 device_remove_file(&vol->dev, &vol_usable_eb_size);
165 device_remove_file(&vol->dev, &vol_alignment);
166 device_remove_file(&vol->dev, &vol_corrupted);
167 device_remove_file(&vol->dev, &vol_name);
168 device_remove_file(&vol->dev, &vol_type);
169 device_remove_file(&vol->dev, &vol_reserved_ebs);
170 device_unregister(&vol->dev);
174 * ubi_create_volume - create volume.
175 * @ubi: UBI device description object
176 * @req: volume creation request
178 * This function creates volume described by @req. If @req->vol_id id
179 * %UBI_VOL_NUM_AUTO, this function automatically assigne ID to the new volume
180 * and saves it in @req->vol_id. Returns zero in case of success and a negative
181 * error code in case of failure.
183 int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req)
185 int i, err, vol_id = req->vol_id;
186 struct ubi_volume *vol;
187 struct ubi_vtbl_record vtbl_rec;
193 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
197 spin_lock(&ubi->volumes_lock);
199 if (vol_id == UBI_VOL_NUM_AUTO) {
200 /* Find unused volume ID */
201 dbg_msg("search for vacant volume ID");
202 for (i = 0; i < ubi->vtbl_slots; i++)
203 if (!ubi->volumes[i]) {
208 if (vol_id == UBI_VOL_NUM_AUTO) {
209 dbg_err("out of volume IDs");
213 req->vol_id = vol_id;
216 dbg_msg("volume ID %d, %llu bytes, type %d, name %s",
217 vol_id, (unsigned long long)req->bytes,
218 (int)req->vol_type, req->name);
220 /* Ensure that this volume does not exist */
222 if (ubi->volumes[vol_id]) {
223 dbg_err("volume %d already exists", vol_id);
227 /* Ensure that the name is unique */
228 for (i = 0; i < ubi->vtbl_slots; i++)
229 if (ubi->volumes[i] &&
230 ubi->volumes[i]->name_len == req->name_len &&
231 !strcmp(ubi->volumes[i]->name, req->name)) {
232 dbg_err("volume \"%s\" exists (ID %d)", req->name, i);
236 /* Calculate how many eraseblocks are requested */
237 vol->usable_leb_size = ubi->leb_size - ubi->leb_size % req->alignment;
239 if (do_div(bytes, vol->usable_leb_size))
240 vol->reserved_pebs = 1;
241 vol->reserved_pebs += bytes;
243 /* Reserve physical eraseblocks */
244 if (vol->reserved_pebs > ubi->avail_pebs) {
245 dbg_err("not enough PEBs, only %d available", ubi->avail_pebs);
249 ubi->avail_pebs -= vol->reserved_pebs;
250 ubi->rsvd_pebs += vol->reserved_pebs;
252 vol->vol_id = vol_id;
253 vol->alignment = req->alignment;
254 vol->data_pad = ubi->leb_size % vol->alignment;
255 vol->vol_type = req->vol_type;
256 vol->name_len = req->name_len;
257 memcpy(vol->name, req->name, vol->name_len + 1);
260 ubi->volumes[vol_id] = vol;
261 spin_unlock(&ubi->volumes_lock);
264 * Finish all pending erases because there may be some LEBs belonging
265 * to the same volume ID.
267 err = ubi_wl_flush(ubi);
271 vol->eba_tbl = kmalloc(vol->reserved_pebs * sizeof(int), GFP_KERNEL);
277 for (i = 0; i < vol->reserved_pebs; i++)
278 vol->eba_tbl[i] = UBI_LEB_UNMAPPED;
280 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
281 vol->used_ebs = vol->reserved_pebs;
282 vol->last_eb_bytes = vol->usable_leb_size;
283 vol->used_bytes = vol->used_ebs * vol->usable_leb_size;
285 bytes = vol->used_bytes;
286 vol->last_eb_bytes = do_div(bytes, vol->usable_leb_size);
287 vol->used_ebs = bytes;
288 if (vol->last_eb_bytes)
291 vol->last_eb_bytes = vol->usable_leb_size;
294 /* Register character device for the volume */
295 cdev_init(&vol->cdev, &ubi_vol_cdev_operations);
296 vol->cdev.owner = THIS_MODULE;
297 err = cdev_add(&vol->cdev, MKDEV(ubi->major, vol_id + 1), 1);
299 ubi_err("cannot add character device for volume %d", vol_id);
303 err = ubi_create_gluebi(ubi, vol);
307 vol->dev.release = vol_release;
308 vol->dev.parent = &ubi->dev;
309 vol->dev.devt = MKDEV(ubi->major, vol->vol_id + 1);
310 vol->dev.class = ubi_class;
311 sprintf(&vol->dev.bus_id[0], "%s_%d", ubi->ubi_name, vol->vol_id);
312 err = device_register(&vol->dev);
316 err = volume_sysfs_init(ubi, vol);
320 /* Fill volume table record */
321 memset(&vtbl_rec, 0, sizeof(struct ubi_vtbl_record));
322 vtbl_rec.reserved_pebs = cpu_to_be32(vol->reserved_pebs);
323 vtbl_rec.alignment = cpu_to_be32(vol->alignment);
324 vtbl_rec.data_pad = cpu_to_be32(vol->data_pad);
325 vtbl_rec.name_len = cpu_to_be16(vol->name_len);
326 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
327 vtbl_rec.vol_type = UBI_VID_DYNAMIC;
329 vtbl_rec.vol_type = UBI_VID_STATIC;
330 memcpy(vtbl_rec.name, vol->name, vol->name_len + 1);
332 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
336 spin_lock(&ubi->volumes_lock);
339 spin_unlock(&ubi->volumes_lock);
341 paranoid_check_volumes(ubi);
345 err = ubi_destroy_gluebi(vol);
347 cdev_del(&vol->cdev);
351 spin_lock(&ubi->volumes_lock);
352 ubi->rsvd_pebs -= vol->reserved_pebs;
353 ubi->avail_pebs += vol->reserved_pebs;
354 ubi->volumes[vol_id] = NULL;
356 spin_unlock(&ubi->volumes_lock);
361 * We are registered, so @vol is destroyed in the release function and
362 * we have to de-initialize differently.
365 err = ubi_destroy_gluebi(vol);
366 cdev_del(&vol->cdev);
368 spin_lock(&ubi->volumes_lock);
369 ubi->rsvd_pebs -= vol->reserved_pebs;
370 ubi->avail_pebs += vol->reserved_pebs;
371 ubi->volumes[vol_id] = NULL;
372 spin_unlock(&ubi->volumes_lock);
373 volume_sysfs_close(vol);
378 * ubi_remove_volume - remove volume.
379 * @desc: volume descriptor
381 * This function removes volume described by @desc. The volume has to be opened
382 * in "exclusive" mode. Returns zero in case of success and a negative error
383 * code in case of failure.
385 int ubi_remove_volume(struct ubi_volume_desc *desc)
387 struct ubi_volume *vol = desc->vol;
388 struct ubi_device *ubi = vol->ubi;
389 int i, err, vol_id = vol->vol_id, reserved_pebs = vol->reserved_pebs;
391 dbg_msg("remove UBI volume %d", vol_id);
392 ubi_assert(desc->mode == UBI_EXCLUSIVE);
393 ubi_assert(vol == ubi->volumes[vol_id]);
398 err = ubi_destroy_gluebi(vol);
402 err = ubi_change_vtbl_record(ubi, vol_id, NULL);
406 for (i = 0; i < vol->reserved_pebs; i++) {
407 err = ubi_eba_unmap_leb(ubi, vol_id, i);
412 spin_lock(&ubi->volumes_lock);
414 ubi->volumes[vol_id] = NULL;
415 spin_unlock(&ubi->volumes_lock);
419 cdev_del(&vol->cdev);
420 volume_sysfs_close(vol);
423 spin_lock(&ubi->volumes_lock);
424 ubi->rsvd_pebs -= reserved_pebs;
425 ubi->avail_pebs += reserved_pebs;
426 i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
428 i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
429 ubi->avail_pebs -= i;
431 ubi->beb_rsvd_pebs += i;
433 ubi_msg("reserve more %d PEBs", i);
436 spin_unlock(&ubi->volumes_lock);
438 paranoid_check_volumes(ubi);
439 module_put(THIS_MODULE);
444 * ubi_resize_volume - re-size volume.
445 * @desc: volume descriptor
446 * @reserved_pebs: new size in physical eraseblocks
448 * This function returns zero in case of success, and a negative error code in
451 int ubi_resize_volume(struct ubi_volume_desc *desc, int reserved_pebs)
453 int i, err, pebs, *new_mapping;
454 struct ubi_volume *vol = desc->vol;
455 struct ubi_device *ubi = vol->ubi;
456 struct ubi_vtbl_record vtbl_rec;
457 int vol_id = vol->vol_id;
462 dbg_msg("re-size volume %d to from %d to %d PEBs",
463 vol_id, vol->reserved_pebs, reserved_pebs);
464 ubi_assert(desc->mode == UBI_EXCLUSIVE);
465 ubi_assert(vol == ubi->volumes[vol_id]);
467 if (vol->vol_type == UBI_STATIC_VOLUME &&
468 reserved_pebs < vol->used_ebs) {
469 dbg_err("too small size %d, %d LEBs contain data",
470 reserved_pebs, vol->used_ebs);
474 /* If the size is the same, we have nothing to do */
475 if (reserved_pebs == vol->reserved_pebs)
478 new_mapping = kmalloc(reserved_pebs * sizeof(int), GFP_KERNEL);
482 for (i = 0; i < reserved_pebs; i++)
483 new_mapping[i] = UBI_LEB_UNMAPPED;
485 /* Reserve physical eraseblocks */
486 pebs = reserved_pebs - vol->reserved_pebs;
488 spin_lock(&ubi->volumes_lock);
489 if (pebs > ubi->avail_pebs) {
490 dbg_err("not enough PEBs: requested %d, available %d",
491 pebs, ubi->avail_pebs);
492 spin_unlock(&ubi->volumes_lock);
496 ubi->avail_pebs -= pebs;
497 ubi->rsvd_pebs += pebs;
498 for (i = 0; i < vol->reserved_pebs; i++)
499 new_mapping[i] = vol->eba_tbl[i];
501 vol->eba_tbl = new_mapping;
502 spin_unlock(&ubi->volumes_lock);
505 /* Change volume table record */
506 memcpy(&vtbl_rec, &ubi->vtbl[vol_id], sizeof(struct ubi_vtbl_record));
507 vtbl_rec.reserved_pebs = cpu_to_be32(reserved_pebs);
508 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
513 for (i = 0; i < -pebs; i++) {
514 err = ubi_eba_unmap_leb(ubi, vol_id, reserved_pebs + i);
518 spin_lock(&ubi->volumes_lock);
519 ubi->rsvd_pebs += pebs;
520 ubi->avail_pebs -= pebs;
521 pebs = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
523 pebs = ubi->avail_pebs >= pebs ? pebs : ubi->avail_pebs;
524 ubi->avail_pebs -= pebs;
525 ubi->rsvd_pebs += pebs;
526 ubi->beb_rsvd_pebs += pebs;
528 ubi_msg("reserve more %d PEBs", pebs);
530 for (i = 0; i < reserved_pebs; i++)
531 new_mapping[i] = vol->eba_tbl[i];
533 vol->eba_tbl = new_mapping;
534 spin_unlock(&ubi->volumes_lock);
537 vol->reserved_pebs = reserved_pebs;
538 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
539 vol->used_ebs = reserved_pebs;
540 vol->last_eb_bytes = vol->usable_leb_size;
541 vol->used_bytes = vol->used_ebs * vol->usable_leb_size;
544 paranoid_check_volumes(ubi);
549 spin_lock(&ubi->volumes_lock);
550 ubi->rsvd_pebs -= pebs;
551 ubi->avail_pebs += pebs;
552 spin_unlock(&ubi->volumes_lock);
560 * ubi_add_volume - add volume.
561 * @ubi: UBI device description object
564 * This function adds an existin volume and initializes all its data
565 * structures. Returnes zero in case of success and a negative error code in
568 int ubi_add_volume(struct ubi_device *ubi, int vol_id)
571 struct ubi_volume *vol = ubi->volumes[vol_id];
573 dbg_msg("add volume %d", vol_id);
574 ubi_dbg_dump_vol_info(vol);
577 /* Register character device for the volume */
578 cdev_init(&vol->cdev, &ubi_vol_cdev_operations);
579 vol->cdev.owner = THIS_MODULE;
580 err = cdev_add(&vol->cdev, MKDEV(ubi->major, vol->vol_id + 1), 1);
582 ubi_err("cannot add character device for volume %d", vol_id);
586 err = ubi_create_gluebi(ubi, vol);
590 vol->dev.release = vol_release;
591 vol->dev.parent = &ubi->dev;
592 vol->dev.devt = MKDEV(ubi->major, vol->vol_id + 1);
593 vol->dev.class = ubi_class;
594 sprintf(&vol->dev.bus_id[0], "%s_%d", ubi->ubi_name, vol->vol_id);
595 err = device_register(&vol->dev);
599 err = volume_sysfs_init(ubi, vol);
601 cdev_del(&vol->cdev);
602 err = ubi_destroy_gluebi(vol);
603 volume_sysfs_close(vol);
607 paranoid_check_volumes(ubi);
611 err = ubi_destroy_gluebi(vol);
613 cdev_del(&vol->cdev);
618 * ubi_free_volume - free volume.
619 * @ubi: UBI device description object
622 * This function frees all resources for volume @vol_id but does not remove it.
623 * Used only when the UBI device is detached.
625 void ubi_free_volume(struct ubi_device *ubi, int vol_id)
628 struct ubi_volume *vol = ubi->volumes[vol_id];
630 dbg_msg("free volume %d", vol_id);
634 err = ubi_destroy_gluebi(vol);
635 ubi->volumes[vol_id] = NULL;
636 cdev_del(&vol->cdev);
637 volume_sysfs_close(vol);
640 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
643 * paranoid_check_volume - check volume information.
644 * @ubi: UBI device description object
647 static void paranoid_check_volume(struct ubi_device *ubi, int vol_id)
649 int idx = vol_id2idx(ubi, vol_id);
650 int reserved_pebs, alignment, data_pad, vol_type, name_len, upd_marker;
651 const struct ubi_volume *vol;
655 spin_lock(&ubi->volumes_lock);
656 reserved_pebs = be32_to_cpu(ubi->vtbl[vol_id].reserved_pebs);
657 vol = ubi->volumes[idx];
661 ubi_err("no volume info, but volume exists");
664 spin_unlock(&ubi->volumes_lock);
668 if (vol->exclusive) {
670 * The volume may be being created at the moment, do not check
671 * it (e.g., it may be in the middle of ubi_create_volume().
673 spin_unlock(&ubi->volumes_lock);
677 if (vol->reserved_pebs < 0 || vol->alignment < 0 || vol->data_pad < 0 ||
679 ubi_err("negative values");
682 if (vol->alignment > ubi->leb_size || vol->alignment == 0) {
683 ubi_err("bad alignment");
687 n = vol->alignment % ubi->min_io_size;
688 if (vol->alignment != 1 && n) {
689 ubi_err("alignment is not multiple of min I/O unit");
693 n = ubi->leb_size % vol->alignment;
694 if (vol->data_pad != n) {
695 ubi_err("bad data_pad, has to be %lld", n);
699 if (vol->vol_type != UBI_DYNAMIC_VOLUME &&
700 vol->vol_type != UBI_STATIC_VOLUME) {
701 ubi_err("bad vol_type");
705 if (vol->upd_marker != 0 && vol->upd_marker != 1) {
706 ubi_err("bad upd_marker");
710 if (vol->upd_marker && vol->corrupted) {
711 dbg_err("update marker and corrupted simultaneously");
715 if (vol->reserved_pebs > ubi->good_peb_count) {
716 ubi_err("too large reserved_pebs");
720 n = ubi->leb_size - vol->data_pad;
721 if (vol->usable_leb_size != ubi->leb_size - vol->data_pad) {
722 ubi_err("bad usable_leb_size, has to be %lld", n);
726 if (vol->name_len > UBI_VOL_NAME_MAX) {
727 ubi_err("too long volume name, max is %d", UBI_VOL_NAME_MAX);
732 ubi_err("NULL volume name");
736 n = strnlen(vol->name, vol->name_len + 1);
737 if (n != vol->name_len) {
738 ubi_err("bad name_len %lld", n);
742 n = vol->used_ebs * vol->usable_leb_size;
743 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
744 if (vol->corrupted != 0) {
745 ubi_err("corrupted dynamic volume");
748 if (vol->used_ebs != vol->reserved_pebs) {
749 ubi_err("bad used_ebs");
752 if (vol->last_eb_bytes != vol->usable_leb_size) {
753 ubi_err("bad last_eb_bytes");
756 if (vol->used_bytes != n) {
757 ubi_err("bad used_bytes");
761 if (vol->corrupted != 0 && vol->corrupted != 1) {
762 ubi_err("bad corrupted");
765 if (vol->used_ebs < 0 || vol->used_ebs > vol->reserved_pebs) {
766 ubi_err("bad used_ebs");
769 if (vol->last_eb_bytes < 0 ||
770 vol->last_eb_bytes > vol->usable_leb_size) {
771 ubi_err("bad last_eb_bytes");
774 if (vol->used_bytes < 0 || vol->used_bytes > n ||
775 vol->used_bytes < n - vol->usable_leb_size) {
776 ubi_err("bad used_bytes");
781 alignment = be32_to_cpu(ubi->vtbl[vol_id].alignment);
782 data_pad = be32_to_cpu(ubi->vtbl[vol_id].data_pad);
783 name_len = be16_to_cpu(ubi->vtbl[vol_id].name_len);
784 upd_marker = ubi->vtbl[vol_id].upd_marker;
785 name = &ubi->vtbl[vol_id].name[0];
786 if (ubi->vtbl[vol_id].vol_type == UBI_VID_DYNAMIC)
787 vol_type = UBI_DYNAMIC_VOLUME;
789 vol_type = UBI_STATIC_VOLUME;
791 if (alignment != vol->alignment || data_pad != vol->data_pad ||
792 upd_marker != vol->upd_marker || vol_type != vol->vol_type ||
793 name_len!= vol->name_len || strncmp(name, vol->name, name_len)) {
794 ubi_err("volume info is different");
798 spin_unlock(&ubi->volumes_lock);
802 ubi_err("paranoid check failed for volume %d", vol_id);
803 ubi_dbg_dump_vol_info(vol);
804 ubi_dbg_dump_vtbl_record(&ubi->vtbl[vol_id], vol_id);
805 spin_unlock(&ubi->volumes_lock);
810 * paranoid_check_volumes - check information about all volumes.
811 * @ubi: UBI device description object
813 static void paranoid_check_volumes(struct ubi_device *ubi)
817 mutex_lock(&ubi->vtbl_mutex);
818 for (i = 0; i < ubi->vtbl_slots; i++)
819 paranoid_check_volume(ubi, i);
820 mutex_unlock(&ubi->vtbl_mutex);