diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2011-10-28 08:13:29 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@serles.lst.de> | 2011-11-02 07:53:43 -0400 |
commit | bfe8684869601dacfcb2cd69ef8cfd9045f62170 (patch) | |
tree | 4e213aaa766b26f43f0f9ec7998a7745239d9377 /drivers/staging | |
parent | 6d6b77f163c7eabedbba00ed2abb7d4a570bff76 (diff) |
filesystems: add set_nlink()
Replace remaining direct i_nlink updates with a new set_nlink()
updater function.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/pohmelfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/pohmelfs/inode.c b/drivers/staging/pohmelfs/inode.c index f3c6060c96b8..7a1955583b7d 100644 --- a/drivers/staging/pohmelfs/inode.c +++ b/drivers/staging/pohmelfs/inode.c | |||
@@ -1197,7 +1197,7 @@ const struct inode_operations pohmelfs_file_inode_operations = { | |||
1197 | void pohmelfs_fill_inode(struct inode *inode, struct netfs_inode_info *info) | 1197 | void pohmelfs_fill_inode(struct inode *inode, struct netfs_inode_info *info) |
1198 | { | 1198 | { |
1199 | inode->i_mode = info->mode; | 1199 | inode->i_mode = info->mode; |
1200 | inode->i_nlink = info->nlink; | 1200 | set_nlink(inode, info->nlink); |
1201 | inode->i_uid = info->uid; | 1201 | inode->i_uid = info->uid; |
1202 | inode->i_gid = info->gid; | 1202 | inode->i_gid = info->gid; |
1203 | inode->i_blocks = info->blocks; | 1203 | inode->i_blocks = info->blocks; |