diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-06-04 14:46:24 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2012-07-09 12:03:11 +0200 |
commit | db8109ef98b5fb7e26e0d265c02f7164b13009d4 (patch) | |
tree | 284fc6e5512e5617d0e0d42a9d4b71e5ac8cbe25 /fs/udf/udfdecl.h | |
parent | f007dbf8e51f4a0910194eebc2aa119eb861893e (diff) | |
download | linux-db8109ef98b5fb7e26e0d265c02f7164b13009d4.tar.gz linux-db8109ef98b5fb7e26e0d265c02f7164b13009d4.tar.bz2 linux-db8109ef98b5fb7e26e0d265c02f7164b13009d4.zip |
udf: stop using s_dirt
The UDF file-system does not need the 's_dirt' superblock flag because it does
not define the 'write_super()' method. This flag was set to 1 in few places and
set to 0 in '->sync_fs()' and was basically useless. Stop using it because it
is on its way out.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/udfdecl.h')
-rw-r--r-- | fs/udf/udfdecl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/udf/udfdecl.h b/fs/udf/udfdecl.h index ebe10314e512..de038da6f6bd 100644 --- a/fs/udf/udfdecl.h +++ b/fs/udf/udfdecl.h @@ -129,7 +129,6 @@ 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; UDF_SB(sb)->s_lvid_dirty = 1; } extern u64 lvid_get_unique_id(struct super_block *sb); |