Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933183Ab0FFOxb (ORCPT ); Sun, 6 Jun 2010 10:53:31 -0400 Received: from smtp.nokia.com ([192.100.122.233]:50183 "EHLO mgw-mx06.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757944Ab0FFOxY (ORCPT ); Sun, 6 Jun 2010 10:53:24 -0400 From: Artem Bityutskiy To: Al Viro Cc: Andrew Morton , LKML , linux-fsdevel@vger.kernel.org, Artem Bityutskiy Subject: [PATCHv5 02/16] VFS: rename s_dirt to s_dirty Date: Sun, 6 Jun 2010 17:50:15 +0300 Message-Id: <1275835829-1478-3-git-send-email-dedekind1@gmail.com> X-Mailer: git-send-email 1.7.0.1 In-Reply-To: <1275835829-1478-1-git-send-email-dedekind1@gmail.com> References: <1275835829-1478-1-git-send-email-dedekind1@gmail.com> X-OriginalArrivalTime: 06 Jun 2010 14:53:12.0599 (UTC) FILETIME=[FC8CA270:01CB0587] X-Nokia-AV: Clean Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1533 Lines: 50 From: Artem Bityutskiy ... in order to make sure no one accesses the "s_dirt" flag direclty - this should help to identify build errors earlier. Signed-off-by: Artem Bityutskiy --- include/linux/fs.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index 68ca1b0..1688464 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1319,7 +1319,7 @@ extern spinlock_t sb_lock; struct super_block { struct list_head s_list; /* Keep this first */ dev_t s_dev; /* search index; _not_ kdev_t */ - unsigned char s_dirt; + unsigned char s_dirty; unsigned char s_blocksize_bits; unsigned long s_blocksize; loff_t s_maxbytes; /* Max file size */ @@ -1785,15 +1785,15 @@ extern void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb); static inline void sb_mark_dirty(struct super_block *sb) { - sb->s_dirt = 1; + sb->s_dirty = 1; } static inline void sb_mark_clean(struct super_block *sb) { - sb->s_dirt = 0; + sb->s_dirty = 0; } static inline int sb_is_dirty(struct super_block *sb) { - return sb->s_dirt; + return sb->s_dirty; } /* Alas, no aliases. Too much hassle with bringing module.h everywhere */ -- 1.7.0.1 -- 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/