Subject: + jffs2-fix-unbalanced-locking.patch added to -mm tree
To: [email protected],[email protected],[email protected]
From: [email protected]
Date: Tue, 11 Feb 2014 15:56:25 -0800


The patch titled
     Subject: jffs2: fix unbalanced locking
has been added to the -mm tree.  Its filename is
     jffs2-fix-unbalanced-locking.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/jffs2-fix-unbalanced-locking.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/jffs2-fix-unbalanced-locking.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Li Zefan <[email protected]>
Subject: jffs2: fix unbalanced locking

This was found by our internal debugging feature on runtime, but this bug
won't lead to deadlock, as the structure that this lock is embedded in is
freed on error.

Signed-off-by: Li Zefan <[email protected]>
Cc: David Woodhouse <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
---

 fs/jffs2/readinode.c |    3 +++
 1 file changed, 3 insertions(+)

diff -puN fs/jffs2/readinode.c~jffs2-fix-unbalanced-locking fs/jffs2/readinode.c
--- a/fs/jffs2/readinode.c~jffs2-fix-unbalanced-locking
+++ a/fs/jffs2/readinode.c
@@ -1143,6 +1143,7 @@ static int jffs2_do_read_inode_internal(
                JFFS2_ERROR("cannot read nodes for ino %u, returned error is 
%d\n", f->inocache->ino, ret);
                if (f->inocache->state == INO_STATE_READING)
                        jffs2_set_inocache_state(c, f->inocache, 
INO_STATE_CHECKEDABSENT);
+               mutex_unlock(&f->sem);
                return ret;
        }
 
@@ -1159,6 +1160,7 @@ static int jffs2_do_read_inode_internal(
                        jffs2_free_tmp_dnode_info(rii.mdata_tn);
                        rii.mdata_tn = NULL;
                }
+               mutex_unlock(&f->sem);
                return ret;
        }
 
@@ -1183,6 +1185,7 @@ static int jffs2_do_read_inode_internal(
                        if (!rii.fds) {
                                if (f->inocache->state == INO_STATE_READING)
                                        jffs2_set_inocache_state(c, 
f->inocache, INO_STATE_CHECKEDABSENT);
+                               mutex_unlock(&f->sem);
                                return -EIO;
                        }
                        JFFS2_NOTICE("but it has children so we fake some modes 
for it\n");
_

Patches currently in -mm which might be from [email protected] are

jffs2-fix-unbalanced-locking.patch
jffs2-avoid-soft-lockup-in-jffs2_reserve_space_gc.patch
jffs2-avoid-soft-lockup-in-jffs2_reserve_space_gc-fix.patch
jffs2-remove-wait-queue-after-schedule.patch
linux-next.patch

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

Reply via email to