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/msdos | |
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/msdos')
-rw-r--r-- | fs/msdos/namei.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/msdos/namei.c b/fs/msdos/namei.c index 635613f2f65a..fa868c755907 100644 --- a/fs/msdos/namei.c +++ b/fs/msdos/namei.c | |||
@@ -389,7 +389,7 @@ static int msdos_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
389 | err = msdos_add_entry(dir, msdos_name, 1, is_hid, cluster, &ts, &sinfo); | 389 | err = msdos_add_entry(dir, msdos_name, 1, is_hid, cluster, &ts, &sinfo); |
390 | if (err) | 390 | if (err) |
391 | goto out_free; | 391 | goto out_free; |
392 | dir->i_nlink++; | 392 | inc_nlink(dir); |
393 | 393 | ||
394 | inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); | 394 | inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); |
395 | brelse(sinfo.bh); | 395 | brelse(sinfo.bh); |
@@ -551,7 +551,7 @@ static int do_msdos_rename(struct inode *old_dir, unsigned char *old_name, | |||
551 | } | 551 | } |
552 | drop_nlink(old_dir); | 552 | drop_nlink(old_dir); |
553 | if (!new_inode) | 553 | if (!new_inode) |
554 | new_dir->i_nlink++; | 554 | inc_nlink(new_dir); |
555 | } | 555 | } |
556 | 556 | ||
557 | err = fat_remove_entries(old_dir, &old_sinfo); /* and releases bh */ | 557 | err = fat_remove_entries(old_dir, &old_sinfo); /* and releases bh */ |