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 /fs/fuse | |
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 'fs/fuse')
-rw-r--r-- | fs/fuse/control.c | 2 | ||||
-rw-r--r-- | fs/fuse/inode.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/control.c b/fs/fuse/control.c index 85542a7daf40..42593c587d48 100644 --- a/fs/fuse/control.c +++ b/fs/fuse/control.c | |||
@@ -231,7 +231,7 @@ static struct dentry *fuse_ctl_add_dentry(struct dentry *parent, | |||
231 | if (iop) | 231 | if (iop) |
232 | inode->i_op = iop; | 232 | inode->i_op = iop; |
233 | inode->i_fop = fop; | 233 | inode->i_fop = fop; |
234 | inode->i_nlink = nlink; | 234 | set_nlink(inode, nlink); |
235 | inode->i_private = fc; | 235 | inode->i_private = fc; |
236 | d_add(dentry, inode); | 236 | d_add(dentry, inode); |
237 | return dentry; | 237 | return dentry; |
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index add96f6ffda5..3e6d72756479 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c | |||
@@ -151,7 +151,7 @@ void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr, | |||
151 | 151 | ||
152 | inode->i_ino = attr->ino; | 152 | inode->i_ino = attr->ino; |
153 | inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777); | 153 | inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777); |
154 | inode->i_nlink = attr->nlink; | 154 | set_nlink(inode, attr->nlink); |
155 | inode->i_uid = attr->uid; | 155 | inode->i_uid = attr->uid; |
156 | inode->i_gid = attr->gid; | 156 | inode->i_gid = attr->gid; |
157 | inode->i_blocks = attr->blocks; | 157 | inode->i_blocks = attr->blocks; |