diff options
Diffstat (limited to 'fs/ext3/super.c')
| -rw-r--r-- | fs/ext3/super.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 7a520a862f4..427496c4767 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -466,6 +466,8 @@ static struct inode *ext3_alloc_inode(struct super_block *sb)  		return NULL;  	ei->i_block_alloc_info = NULL;  	ei->vfs_inode.i_version = 1; +	atomic_set(&ei->i_datasync_tid, 0); +	atomic_set(&ei->i_sync_tid, 0);  	return &ei->vfs_inode;  }  |