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/vfat | |
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/vfat')
-rw-r--r-- | fs/vfat/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/vfat/namei.c b/fs/vfat/namei.c index cd450bea9f1a..efc70576e4b4 100644 --- a/fs/vfat/namei.c +++ b/fs/vfat/namei.c | |||
@@ -1003,7 +1003,7 @@ static const struct inode_operations vfat_dir_inode_operations = { | |||
1003 | .mkdir = vfat_mkdir, | 1003 | .mkdir = vfat_mkdir, |
1004 | .rmdir = vfat_rmdir, | 1004 | .rmdir = vfat_rmdir, |
1005 | .rename = vfat_rename, | 1005 | .rename = vfat_rename, |
1006 | .setattr = fat_notify_change, | 1006 | .setattr = fat_setattr, |
1007 | .getattr = fat_getattr, | 1007 | .getattr = fat_getattr, |
1008 | }; | 1008 | }; |
1009 | 1009 | ||