# This is a BitKeeper generated diff -Nru style patch. # # ChangeSet # 2004/04/22 09:42:19+10:00 nathans@sgi.com # [XFS] Clear the superblock dirty flag after flushing the log in # sync_super. # # SGI Modid: xfs-linux:xfs-kern:170342a # # fs/xfs/linux/xfs_super.c # 2004/04/22 09:42:14+10:00 nathans@sgi.com +1 -0 # [XFS] Clear the superblock dirty flag after flushing the log in # sync_super. # diff -Nru a/fs/xfs/linux/xfs_super.c b/fs/xfs/linux/xfs_super.c --- a/fs/xfs/linux/xfs_super.c Fri Apr 23 01:44:48 2004 +++ b/fs/xfs/linux/xfs_super.c Fri Apr 23 01:44:48 2004 @@ -606,6 +606,7 @@ int error; VFS_SYNC(vfsp, SYNC_FSDATA|SYNC_WAIT, NULL, error); + sb->s_dirt = 0; return -error; }