diff options
author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2008-04-28 05:16:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:47 -0400 |
commit | 1278fdd34b12214b5c2e91e64848a5e54e57ed96 (patch) | |
tree | 3d50d0f2fd3444389031d5a540d65eb16480d8e8 /fs/msdos/namei.c | |
parent | 3754a544474b9fd4fdd32a96d98bc4ab558b2bb6 (diff) |
fat: fat_notify_change() and check_mode() cleanup
- Rename fat_notify_change() to fat_setattr()
- check_mode() cleanup
- Change layout of code
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/msdos/namei.c')
-rw-r--r-- | fs/msdos/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/msdos/namei.c b/fs/msdos/namei.c index 30f7d0ae2215..2d4358c59f68 100644 --- a/fs/msdos/namei.c +++ b/fs/msdos/namei.c | |||
@@ -653,7 +653,7 @@ static const struct inode_operations msdos_dir_inode_operations = { | |||
653 | .mkdir = msdos_mkdir, | 653 | .mkdir = msdos_mkdir, |
654 | .rmdir = msdos_rmdir, | 654 | .rmdir = msdos_rmdir, |
655 | .rename = msdos_rename, | 655 | .rename = msdos_rename, |
656 | .setattr = fat_notify_change, | 656 | .setattr = fat_setattr, |
657 | .getattr = fat_getattr, | 657 | .getattr = fat_getattr, |
658 | }; | 658 | }; |
659 | 659 | ||