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/jffs2/fs.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/jffs2/fs.c')
-rw-r--r-- | fs/jffs2/fs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jffs2/fs.c b/fs/jffs2/fs.c index 72d9909d95ff..7bc1a4201c0c 100644 --- a/fs/jffs2/fs.c +++ b/fs/jffs2/fs.c | |||
@@ -277,13 +277,13 @@ void jffs2_read_inode (struct inode *inode) | |||
277 | 277 | ||
278 | for (fd=f->dents; fd; fd = fd->next) { | 278 | for (fd=f->dents; fd; fd = fd->next) { |
279 | if (fd->type == DT_DIR && fd->ino) | 279 | if (fd->type == DT_DIR && fd->ino) |
280 | inode->i_nlink++; | 280 | inc_nlink(inode); |
281 | } | 281 | } |
282 | /* and '..' */ | 282 | /* and '..' */ |
283 | inode->i_nlink++; | 283 | inc_nlink(inode); |
284 | /* Root dir gets i_nlink 3 for some reason */ | 284 | /* Root dir gets i_nlink 3 for some reason */ |
285 | if (inode->i_ino == 1) | 285 | if (inode->i_ino == 1) |
286 | inode->i_nlink++; | 286 | inc_nlink(inode); |
287 | 287 | ||
288 | inode->i_op = &jffs2_dir_inode_operations; | 288 | inode->i_op = &jffs2_dir_inode_operations; |
289 | inode->i_fop = &jffs2_dir_operations; | 289 | inode->i_fop = &jffs2_dir_operations; |