Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758935AbZGIHCR (ORCPT ); Thu, 9 Jul 2009 03:02:17 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759812AbZGIG7h (ORCPT ); Thu, 9 Jul 2009 02:59:37 -0400 Received: from smtp.nokia.com ([192.100.105.134]:41678 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759769AbZGIG7f (ORCPT ); Thu, 9 Jul 2009 02:59:35 -0400 From: Artem Bityutskiy To: Al Viro , Jens Axboe Cc: linux-fsdevel@vger.kernel.org, Artem Bityutskiy , linux-kernel@vger.kernel.org Date: Thu, 09 Jul 2009 11:49:59 +0300 Message-Id: <20090709084959.12122.46183.sendpatchset@localhost.localdomain> In-Reply-To: <20090709084822.12122.79749.sendpatchset@localhost.localdomain> References: <20090709084822.12122.79749.sendpatchset@localhost.localdomain> Subject: [PATCH v3 14/18] UDF: do not manipulate s_dirt directly X-OriginalArrivalTime: 09 Jul 2009 06:59:28.0837 (UTC) FILETIME=[CD85BF50:01CA0062] X-Nokia-AV: Clean Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1838 Lines: 61 ... use new VFS helpers instead. Signed-off-by: Artem Bityutskiy Jan Kara --- fs/udf/super.c | 6 +++--- fs/udf/udfdecl.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/udf/super.c b/fs/udf/super.c index 6832135..62b7774 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -1912,7 +1912,7 @@ static int udf_fill_super(struct super_block *sb, void *options, int silent) sb->s_op = &udf_sb_ops; sb->s_export_op = &udf_export_ops; sb->dq_op = NULL; - sb->s_dirt = 0; + mark_sb_clean(sb); sb->s_magic = UDF_SUPER_MAGIC; sb->s_time_gran = 1000; @@ -2039,7 +2039,7 @@ static void udf_error(struct super_block *sb, const char *function, if (!(sb->s_flags & MS_RDONLY)) { /* mark sb error */ - sb->s_dirt = 1; + mark_sb_dirty(sb); } va_start(args, fmt); vsnprintf(error_buf, sizeof(error_buf), fmt, args); @@ -2099,7 +2099,7 @@ static int udf_sync_fs(struct super_block *sb, int wait) * the buffer for IO */ mark_buffer_dirty(sbi->s_lvid_bh); - sb->s_dirt = 0; + mark_sb_clean(sb); sbi->s_lvid_dirty = 0; } mutex_unlock(&sbi->s_alloc_mutex); diff --git a/fs/udf/udfdecl.h b/fs/udf/udfdecl.h index 8d46f42..4305bcb 100644 --- a/fs/udf/udfdecl.h +++ b/fs/udf/udfdecl.h @@ -119,7 +119,7 @@ static inline void udf_updated_lvid(struct super_block *sb) WARN_ON_ONCE(((struct logicalVolIntegrityDesc *) bh->b_data)->integrityType != cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN)); - sb->s_dirt = 1; + mark_sb_dirty(sb); UDF_SB(sb)->s_lvid_dirty = 1; } -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/