diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-25 11:13:33 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-26 12:15:17 -0500 |
commit | 783b273afab43437dca731a229d53d72faf77fd3 (patch) | |
tree | daadf822539189bcc81d64a609f2b084849114e5 /drivers/mtd/ubi/build.c | |
parent | 897a316c9e6f7fea6f1d3759797b75c0ebaec479 (diff) |
UBI: use separate mutex for volumes checking
Introduce a separate mutex which serializes volumes checking,
because we cammot really use volumes_mutex - it cases reverse
locking problems with mtd_tbl_mutex when gluebi is used -
thanks to lockdep.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi/build.c')
-rw-r--r-- | drivers/mtd/ubi/build.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index 70c0b9a9e6e3..6ac133994f94 100644 --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c | |||
@@ -703,6 +703,7 @@ int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num, int vid_hdr_offset) | |||
703 | goto out_free; | 703 | goto out_free; |
704 | 704 | ||
705 | mutex_init(&ubi->buf_mutex); | 705 | mutex_init(&ubi->buf_mutex); |
706 | mutex_init(&ubi->ckvol_mutex); | ||
706 | ubi->peb_buf1 = vmalloc(ubi->peb_size); | 707 | ubi->peb_buf1 = vmalloc(ubi->peb_size); |
707 | if (!ubi->peb_buf1) | 708 | if (!ubi->peb_buf1) |
708 | goto out_free; | 709 | goto out_free; |