]> git.baikalelectronics.ru Git - kernel.git/commit
ext2: Remove duplicate code from ext2_sync_fs()
authorJan Blunck <jblunck@suse.de>
Wed, 14 Apr 2010 12:38:35 +0000 (14:38 +0200)
committerJan Kara <jack@suse.cz>
Fri, 21 May 2010 17:30:39 +0000 (19:30 +0200)
commit927ccdc02bdf5e77d6969c74a3ec43443b47bc4a
treeaab271acba35a0e0c83e29136471ceb267c76d45
parenta440fe2ef20b1f77f95caebc3ca524a97ccdf2c6
ext2: Remove duplicate code from ext2_sync_fs()

Depending in the state (valid or unchecked) of the filesystem either
ext2_sync_super() or ext2_commit_super() is called. If the filesystem is
currently valid (it is checked), we first mark it unchecked and afterwards
duplicate the work that ext2_sync_super() is doing later. Therefore this
patch removes the duplicate code and calls ext2_sync_super() directly after
marking the filesystem unchecked.

Signed-off-by: Jan Blunck <jblunck@suse.de>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/ext2/super.c