diff options
author | Dave Hansen <haveblue@us.ibm.com> | 2006-10-01 02:29:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:30 -0400 |
commit | d8c76e6f45c111c32a4b3e50a2adc9210737b0d8 (patch) | |
tree | 25521b59d48c6d8c9aec1af54dbe5008ad4b215b /fs/configfs/dir.c | |
parent | 9a53c3a783c2fa9b969628e65695c11c3e51e673 (diff) |
[PATCH] r/o bind mount prepwork: inc_nlink() helper
This is mostly included for parity with dec_nlink(), where we will have some
more hooks. This one should stay pretty darn straightforward for now.
Signed-off-by: Dave Hansen <haveblue@us.ibm.com>
Acked-by: Christoph Hellwig <hch@lst.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/configfs/dir.c')
-rw-r--r-- | fs/configfs/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index 816e8ef64560..8a3b6a1a6ad1 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c | |||
@@ -139,7 +139,7 @@ static int init_dir(struct inode * inode) | |||
139 | inode->i_fop = &configfs_dir_operations; | 139 | inode->i_fop = &configfs_dir_operations; |
140 | 140 | ||
141 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ | 141 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ |
142 | inode->i_nlink++; | 142 | inc_nlink(inode); |
143 | return 0; | 143 | return 0; |
144 | } | 144 | } |
145 | 145 | ||
@@ -169,7 +169,7 @@ static int create_dir(struct config_item * k, struct dentry * p, | |||
169 | if (!error) { | 169 | if (!error) { |
170 | error = configfs_create(d, mode, init_dir); | 170 | error = configfs_create(d, mode, init_dir); |
171 | if (!error) { | 171 | if (!error) { |
172 | p->d_inode->i_nlink++; | 172 | inc_nlink(p->d_inode); |
173 | (d)->d_op = &configfs_dentry_ops; | 173 | (d)->d_op = &configfs_dentry_ops; |
174 | } else { | 174 | } else { |
175 | struct configfs_dirent *sd = d->d_fsdata; | 175 | struct configfs_dirent *sd = d->d_fsdata; |