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

Commit 66d21730 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
Browse files

[PATCH] Extract inode_inc_link_count(), inode_dec_link_count()

parent a7ccf007
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -1115,6 +1115,18 @@ static inline void mark_inode_dirty_sync(struct inode *inode)
	__mark_inode_dirty(inode, I_DIRTY_SYNC);
}

static inline void inode_inc_link_count(struct inode *inode)
{
	inode->i_nlink++;
	mark_inode_dirty(inode);
}

static inline void inode_dec_link_count(struct inode *inode)
{
	inode->i_nlink--;
	mark_inode_dirty(inode);
}

extern void touch_atime(struct vfsmount *mnt, struct dentry *dentry);
static inline void file_accessed(struct file *file)
{