logfs: initialize li->li_refcount
li_refcount was not re-initialized in function logfs_init_inode(), small patch that will fix the problem Signed-off-by: Prasad Joshi <prasadjoshi124@gmail.com> Signed-off-by: Joern Engel <joern@logfs.org>
This commit is contained in:
parent
05ebad8529
commit
24797535e1
|
@ -193,6 +193,7 @@ static void logfs_init_inode(struct super_block *sb, struct inode *inode)
|
|||
inode->i_ctime = CURRENT_TIME;
|
||||
inode->i_mtime = CURRENT_TIME;
|
||||
inode->i_nlink = 1;
|
||||
li->li_refcount = 1;
|
||||
INIT_LIST_HEAD(&li->li_freeing_list);
|
||||
|
||||
for (i = 0; i < LOGFS_EMBEDDED_FIELDS; i++)
|
||||
|
|
Loading…
Reference in New Issue