Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 273089
b: refs/heads/master
c: ed47a7d
h: refs/heads/master
i:
  273087: 5018ce7
v: v3
  • Loading branch information
Jan Kara committed Oct 31, 2011
1 parent 7eea5b2 commit 359325a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3080a74ea39eece6ac21aae768c48ab8b1f89ac1
refs/heads/master: ed47a7d00c22b326fc4c97342a73ecd15929732e
4 changes: 2 additions & 2 deletions trunk/fs/udf/partition.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,10 @@ uint32_t udf_get_pblock_meta25(struct super_block *sb, uint32_t block,
retblk = udf_try_read_meta(inode, block, partition, offset);
if (retblk == 0xFFFFFFFF && mdata->s_metadata_fe) {
udf_warn(sb, "error reading from METADATA, trying to read from MIRROR\n");
if (!mdata->s_mirror_loaded_flag) {
if (!(mdata->s_flags & MF_MIRROR_FE_LOADED)) {
mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb,
mdata->s_mirror_file_loc, map->s_partition_num);
mdata->s_mirror_loaded_flag = 1;
mdata->s_flags |= MF_MIRROR_FE_LOADED;
}

inode = mdata->s_mirror_fe;
Expand Down
8 changes: 4 additions & 4 deletions trunk/fs/udf/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1333,8 +1333,8 @@ static int udf_load_logicalvol(struct super_block *sb, sector_t block,
le32_to_cpu(mdm->allocUnitSize);
mdata->s_align_unit_size =
le16_to_cpu(mdm->alignUnitSize);
mdata->s_dup_md_flag =
mdm->flags & 0x01;
if (mdm->flags & 0x01)
mdata->s_flags |= MF_DUPLICATE_MD;

udf_debug("Metadata Ident suffix=0x%x\n",
le16_to_cpu(*(__le16 *)
Expand All @@ -1349,8 +1349,8 @@ static int udf_load_logicalvol(struct super_block *sb, sector_t block,
le32_to_cpu(mdm->metadataMirrorFileLoc));
udf_debug("Bitmap file loc=%d\n",
le32_to_cpu(mdm->metadataBitmapFileLoc));
udf_debug("Duplicate Flag: %d %d\n",
mdata->s_dup_md_flag, mdm->flags);
udf_debug("Flags: %d %d\n",
mdata->s_flags, mdm->flags);
} else {
udf_debug("Unknown ident: %s\n",
upm2->partIdent.ident);
Expand Down
6 changes: 4 additions & 2 deletions trunk/fs/udf/udf_sb.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,16 @@

#pragma pack(1) /* XXX(hch): Why? This file just defines in-core structures */

#define MF_DUPLICATE_MD 0x01
#define MF_MIRROR_FE_LOADED 0x02

struct udf_meta_data {
__u32 s_meta_file_loc;
__u32 s_mirror_file_loc;
__u32 s_bitmap_file_loc;
__u32 s_alloc_unit_size;
__u16 s_align_unit_size;
__u8 s_dup_md_flag;
__u8 s_mirror_loaded_flag;
int s_flags;
struct inode *s_metadata_fe;
struct inode *s_mirror_fe;
struct inode *s_bitmap_fe;
Expand Down

0 comments on commit 359325a

Please sign in to comment.