diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-05-31 19:26:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-31 20:49:28 -0400 |
commit | 78491189ddb6d84d4a4abae992ed891a236d0263 (patch) | |
tree | f451b46a2c0a505b6812b696e03604b8613b3df0 /fs/fat/inode.c | |
parent | 330fe3c4c6509e0418c434b5bcf80e65cffab477 (diff) |
fat: switch to fsinfo_inode
Currently FAT file-system maps the VFS "superblock" abstraction to the
FSINFO block. The FSINFO block contains non-essential data about the
amount of free clusters and the next free cluster. FAT file-system can
always find out this information by scanning the FAT table, but having it
in the FSINFO block may speed things up sometimes. So FAT file-system
relies on the VFS superblock write-out services to make sure the FSINFO
block is written out to the media from time to time.
The whole "superblock write-out" VFS infrastructure is served by the
'sync_supers()' kernel thread, which wakes up every 5 (by default) seconds
and writes out all dirty superblock using the '->write_super()' call-back.
But the problem with this thread is that it wastes power by waking up the
system every 5 seconds no matter what. So we want to kill it completely
and thus, we need to make file-systems to stop using the '->write_super'
VFS service, and then remove it together with the kernel thread.
This patch switches the FAT FSINFO block management from
'->write_super()'/'->s_dirt' to 'fsinfo_inode'/'->write_inode'. Now,
instead of setting the 's_dirt' flag, we just mark the special
'fsinfo_inode' inode as dirty and let VFS invoke the '->write_inode'
call-back when needed, where we write-out the FSINFO block.
This patch also makes sure we do not mark the 'fsinfo_inode' inode as
dirty if we are not FAT32 (FAT16 and FAT12 do not have the FSINFO block)
or if we are in R/O mode.
As a bonus, we can also remove the '->sync_fs()' and '->write_super()' FAT
call-back function because they become unneeded.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fat/inode.c')
-rw-r--r-- | fs/fat/inode.c | 42 |
1 files changed, 12 insertions, 30 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 84c602b4bb25..c2973ea5df9a 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
@@ -459,37 +459,10 @@ static void fat_evict_inode(struct inode *inode) | |||
459 | fat_detach(inode); | 459 | fat_detach(inode); |
460 | } | 460 | } |
461 | 461 | ||
462 | static void fat_write_super(struct super_block *sb) | ||
463 | { | ||
464 | lock_super(sb); | ||
465 | sb->s_dirt = 0; | ||
466 | |||
467 | if (!(sb->s_flags & MS_RDONLY)) | ||
468 | fat_clusters_flush(sb); | ||
469 | unlock_super(sb); | ||
470 | } | ||
471 | |||
472 | static int fat_sync_fs(struct super_block *sb, int wait) | ||
473 | { | ||
474 | int err = 0; | ||
475 | |||
476 | if (sb->s_dirt) { | ||
477 | lock_super(sb); | ||
478 | sb->s_dirt = 0; | ||
479 | err = fat_clusters_flush(sb); | ||
480 | unlock_super(sb); | ||
481 | } | ||
482 | |||
483 | return err; | ||
484 | } | ||
485 | |||
486 | static void fat_put_super(struct super_block *sb) | 462 | static void fat_put_super(struct super_block *sb) |
487 | { | 463 | { |
488 | struct msdos_sb_info *sbi = MSDOS_SB(sb); | 464 | struct msdos_sb_info *sbi = MSDOS_SB(sb); |
489 | 465 | ||
490 | if (sb->s_dirt) | ||
491 | fat_write_super(sb); | ||
492 | |||
493 | iput(sbi->fsinfo_inode); | 466 | iput(sbi->fsinfo_inode); |
494 | iput(sbi->fat_inode); | 467 | iput(sbi->fat_inode); |
495 | 468 | ||
@@ -662,7 +635,18 @@ retry: | |||
662 | 635 | ||
663 | static int fat_write_inode(struct inode *inode, struct writeback_control *wbc) | 636 | static int fat_write_inode(struct inode *inode, struct writeback_control *wbc) |
664 | { | 637 | { |
665 | return __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL); | 638 | int err; |
639 | |||
640 | if (inode->i_ino == MSDOS_FSINFO_INO) { | ||
641 | struct super_block *sb = inode->i_sb; | ||
642 | |||
643 | lock_super(sb); | ||
644 | err = fat_clusters_flush(sb); | ||
645 | unlock_super(sb); | ||
646 | } else | ||
647 | err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL); | ||
648 | |||
649 | return err; | ||
666 | } | 650 | } |
667 | 651 | ||
668 | int fat_sync_inode(struct inode *inode) | 652 | int fat_sync_inode(struct inode *inode) |
@@ -679,8 +663,6 @@ static const struct super_operations fat_sops = { | |||
679 | .write_inode = fat_write_inode, | 663 | .write_inode = fat_write_inode, |
680 | .evict_inode = fat_evict_inode, | 664 | .evict_inode = fat_evict_inode, |
681 | .put_super = fat_put_super, | 665 | .put_super = fat_put_super, |
682 | .write_super = fat_write_super, | ||
683 | .sync_fs = fat_sync_fs, | ||
684 | .statfs = fat_statfs, | 666 | .statfs = fat_statfs, |
685 | .remount_fs = fat_remount, | 667 | .remount_fs = fat_remount, |
686 | 668 | ||