diff --git a/[refs] b/[refs] index efe624461764..0676c375e8dc 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 1725cd0ae07bb31f68803edcc5bdc99952c7d2f4 +refs/heads/master: 95f8797f42b058333d1e6f0d1dcd8edf5dc6c244 diff --git a/trunk/fs/udf/super.c b/trunk/fs/udf/super.c index 4df822c881b6..7de172efa084 100644 --- a/trunk/fs/udf/super.c +++ b/trunk/fs/udf/super.c @@ -115,6 +115,13 @@ static struct inode *udf_alloc_inode(struct super_block *sb) ei = (struct udf_inode_info *)kmem_cache_alloc(udf_inode_cachep, SLAB_KERNEL); if (!ei) return NULL; + + ei->i_unique = 0; + ei->i_lenExtents = 0; + ei->i_next_alloc_block = 0; + ei->i_next_alloc_goal = 0; + ei->i_strat4096 = 0; + return &ei->vfs_inode; }