Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24797535 authored by Prasad Joshi's avatar Prasad Joshi Committed by Joern Engel
Browse files

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: default avatarPrasad Joshi <prasadjoshi124@gmail.com>
Signed-off-by: default avatarJoern Engel <joern@logfs.org>
parent 05ebad85
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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++)