#4538: mutex is not initilaized in jffs2_read_inode
---------------------------+----------------------
Reporter: chenjin_zhong | Owner: (none)
Type: defect | Status: closed
Priority: normal | Milestone: 5.1
Component: fs/jaffs2 | Version: 5
Severity: normal | Resolution: invalid
Keywords: | Blocked By:
Blocking: |
---------------------------+----------------------
Changes (by Sebastian Huber):
* status: new => closed
* resolution: => invalid
* component: admin => fs/jaffs2
Comment:
Thanks for your interest in the RTEMS port of JFFS2. If you have
questions, then you could also ask them on the [email protected] mailing
list. The RTEMS port of JFFS2 does not use a file system internal locking.
There is a global lock for each JFFS2 instance:
{{{#!c
static void rtems_jffs2_do_lock(struct super_block *sb)
{
rtems_recursive_mutex_lock(&sb->s_mutex);
}
static void rtems_jffs2_do_unlock(struct super_block *sb)
{
rtems_recursive_mutex_unlock(&sb->s_mutex);
}
}}}
--
Ticket URL: <http://devel.rtems.org/ticket/4538#comment:1>
RTEMS Project <http://www.rtems.org/>
RTEMS Project
_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs