Commit f3dd03ca authored by Christoph Hellwig's avatar Christoph Hellwig

JFS: fix up more merge issues

The BK merging was a little too smart for the conflicting changes.
Add back what we lost with the last changeset.
parent cbc31c41
...@@ -113,8 +113,8 @@ int jfs_umount(struct super_block *sb) ...@@ -113,8 +113,8 @@ int jfs_umount(struct super_block *sb)
* Make sure all metadata makes it to disk before we mark * Make sure all metadata makes it to disk before we mark
* the superblock as clean * the superblock as clean
*/ */
filemap_fdatawrite(sbi->direct_inode->i_mapping); filemap_fdatawrite(bdev_mapping);
filemap_fdatawait(sbi->direct_inode->i_mapping); filemap_fdatawait(bdev_mapping);
/* /*
* ensure all file system file pages are propagated to their * ensure all file system file pages are propagated to their
...@@ -168,6 +168,7 @@ int jfs_umount_rw(struct super_block *sb) ...@@ -168,6 +168,7 @@ int jfs_umount_rw(struct super_block *sb)
* disk. * disk.
*/ */
filemap_fdatawrite(bdev_mapping); filemap_fdatawrite(bdev_mapping);
filemap_fdatawait(bdev_mapping);
updateSuper(sb, FM_CLEAN); updateSuper(sb, FM_CLEAN);
sbi->log = NULL; sbi->log = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment