From: Artem Bityutskiy <Artem.Bityutskiy@xxxxxxxxx> ... use new VFS helpers instead. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@xxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> --- fs/hfs/extent.c | 2 +- fs/hfs/hfs_fs.h | 2 +- fs/hfs/inode.c | 6 +++--- fs/hfs/super.c | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/fs/hfs/extent.c b/fs/hfs/extent.c index 2c16316..bff476a 100644 --- a/fs/hfs/extent.c +++ b/fs/hfs/extent.c @@ -432,7 +432,7 @@ out: if (inode->i_ino < HFS_FIRSTUSER_CNID) set_bit(HFS_FLG_ALT_MDB_DIRTY, &HFS_SB(sb)->flags); set_bit(HFS_FLG_MDB_DIRTY, &HFS_SB(sb)->flags); - sb->s_dirt = 1; + mark_sb_dirty(sb); } return res; diff --git a/fs/hfs/hfs_fs.h b/fs/hfs/hfs_fs.h index fe35e3b..2083002 100644 --- a/fs/hfs/hfs_fs.h +++ b/fs/hfs/hfs_fs.h @@ -251,7 +251,7 @@ static inline const char *hfs_mdb_name(struct super_block *sb) static inline void hfs_bitmap_dirty(struct super_block *sb) { set_bit(HFS_FLG_BITMAP_DIRTY, &HFS_SB(sb)->flags); - sb->s_dirt = 1; + mark_sb_dirty(sb); } static inline void hfs_buffer_sync(struct buffer_head *bh) diff --git a/fs/hfs/inode.c b/fs/hfs/inode.c index 14f5cb1..74cb771 100644 --- a/fs/hfs/inode.c +++ b/fs/hfs/inode.c @@ -198,7 +198,7 @@ struct inode *hfs_new_inode(struct inode *dir, struct qstr *name, int mode) insert_inode_hash(inode); mark_inode_dirty(inode); set_bit(HFS_FLG_MDB_DIRTY, &HFS_SB(sb)->flags); - sb->s_dirt = 1; + mark_sb_dirty(sb); return inode; } @@ -213,7 +213,7 @@ void hfs_delete_inode(struct inode *inode) if (HFS_I(inode)->cat_key.ParID == cpu_to_be32(HFS_ROOT_CNID)) HFS_SB(sb)->root_dirs--; set_bit(HFS_FLG_MDB_DIRTY, &HFS_SB(sb)->flags); - sb->s_dirt = 1; + mark_sb_dirty(sb); return; } HFS_SB(sb)->file_count--; @@ -226,7 +226,7 @@ void hfs_delete_inode(struct inode *inode) } } set_bit(HFS_FLG_MDB_DIRTY, &HFS_SB(sb)->flags); - sb->s_dirt = 1; + mark_sb_dirty(sb); } void hfs_inode_read_fork(struct inode *inode, struct hfs_extent *ext, diff --git a/fs/hfs/super.c b/fs/hfs/super.c index 0a81eb7..3fc4e9f 100644 --- a/fs/hfs/super.c +++ b/fs/hfs/super.c @@ -52,7 +52,7 @@ MODULE_LICENSE("GPL"); static void hfs_write_super(struct super_block *sb) { lock_super(sb); - sb->s_dirt = 0; + mark_sb_clean(sb); /* sync everything to the buffers */ if (!(sb->s_flags & MS_RDONLY)) @@ -64,7 +64,7 @@ static int hfs_sync_fs(struct super_block *sb, int wait) { lock_super(sb); hfs_mdb_commit(sb); - sb->s_dirt = 0; + mark_sb_clean(sb); unlock_super(sb); return 0; @@ -81,7 +81,7 @@ static void hfs_put_super(struct super_block *sb) { lock_kernel(); - if (sb->s_dirt) + if (is_sb_dirty(sb)) hfs_write_super(sb); hfs_mdb_close(sb); /* release the MDB's resources */ -- 1.6.6.1 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html