Skip to content

Commit

Permalink
udf: Allow loading of VAT inode
Browse files Browse the repository at this point in the history
UDF media with VAT could have never worked because udf_fill_inode() didn't
know about case FILE_TYPE_VAT20. Fix this.

Signed-off-by: Jan Kara <jack@suse.cz>
  • Loading branch information
Jan Kara committed Apr 17, 2008
1 parent c82a127 commit 742e179
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fs/udf/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1275,6 +1275,7 @@ static void udf_fill_inode(struct inode *inode, struct buffer_head *bh)
case ICBTAG_FILE_TYPE_REALTIME:
case ICBTAG_FILE_TYPE_REGULAR:
case ICBTAG_FILE_TYPE_UNDEF:
case ICBTAG_FILE_TYPE_VAT20:
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)
inode->i_data.a_ops = &udf_adinicb_aops;
else
Expand Down

0 comments on commit 742e179

Please sign in to comment.