From mboxrd@z Thu Jan 1 00:00:00 1970 From: Artem Bityutskiy Subject: [PATCH 16/19] XFS: do not manipulate s_dirt directly Date: Wed, 27 May 2009 16:06:46 +0300 Message-ID: <20090527130646.4913.86027.sendpatchset@localhost.localdomain> References: <20090527130503.4913.62042.sendpatchset@localhost.localdomain> Cc: linux-fsdevel@vger.kernel.org, Christoph Hellwig , Artem Bityutskiy To: linux-kernel@vger.kernel.org Return-path: Received: from smtp.nokia.com ([192.100.122.233]:65304 "EHLO mgw-mx06.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761323AbZE0LNS (ORCPT ); Wed, 27 May 2009 07:13:18 -0400 In-Reply-To: <20090527130503.4913.62042.sendpatchset@localhost.localdomain> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Artem Bityutskiy Subject: [PATCH] XFS: do not manipulate s_dirt directly ... use new VFS helpers instead. Signed-off-by: Artem Bityutskiy Cc: Christoph Hellwig --- fs/xfs/linux-2.6/xfs_super.c | 6 +++--- fs/xfs/xfs_trans.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index d29218e..4c25456 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c @@ -1114,7 +1114,7 @@ xfs_fs_write_super( { if (!(sb->s_flags & MS_RDONLY)) xfs_sync_fsdata(XFS_M(sb), 0); - sb->s_dirt = 0; + mark_sb_clean(sb); } STATIC int @@ -1141,7 +1141,7 @@ xfs_fs_sync_super( error = xfs_quiesce_data(mp); else error = xfs_sync_fsdata(mp, 0); - sb->s_dirt = 0; + mark_sb_clean(sb); if (unlikely(laptop_mode)) { int prev_sync_seq = mp->m_sync_seq; @@ -1447,7 +1447,7 @@ xfs_fs_fill_super( XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname); - sb->s_dirt = 1; + mark_sb_dirty(sb); sb->s_magic = XFS_SB_MAGIC; sb->s_blocksize = mp->m_sb.sb_blocksize; sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1; diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c index 8570b82..2552bae 100644 --- a/fs/xfs/xfs_trans.c +++ b/fs/xfs/xfs_trans.c @@ -629,7 +629,7 @@ xfs_trans_apply_sb_deltas( offsetof(xfs_dsb_t, sb_frextents) + sizeof(sbp->sb_frextents) - 1); - tp->t_mountp->m_super->s_dirt = 1; + mark_sb_dirty(tp->t_mountp->m_super); } /* -- 1.6.0.6