summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/udf/partition.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/udf/partition.c b/fs/udf/partition.c
index e4e9e70c37f2..ca3cde336324 100644
--- a/fs/udf/partition.c
+++ b/fs/udf/partition.c
@@ -326,6 +326,8 @@ uint32_t udf_get_pblock_meta25(struct super_block *sb, uint32_t block,
326 if (!(mdata->s_flags & MF_MIRROR_FE_LOADED)) { 326 if (!(mdata->s_flags & MF_MIRROR_FE_LOADED)) {
327 mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb, 327 mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb,
328 mdata->s_mirror_file_loc, map->s_partition_num); 328 mdata->s_mirror_file_loc, map->s_partition_num);
329 if (IS_ERR(mdata->s_mirror_fe))
330 mdata->s_mirror_fe = NULL;
329 mdata->s_flags |= MF_MIRROR_FE_LOADED; 331 mdata->s_flags |= MF_MIRROR_FE_LOADED;
330 } 332 }
331 333