diff options
Diffstat (limited to 'fs/udf/partition.c')
-rw-r--r-- | fs/udf/partition.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/udf/partition.c b/fs/udf/partition.c index 888c364b2fe9..090baff83990 100644 --- a/fs/udf/partition.c +++ b/fs/udf/partition.c | |||
@@ -32,7 +32,7 @@ uint32_t udf_get_pblock(struct super_block *sb, uint32_t block, | |||
32 | struct udf_sb_info *sbi = UDF_SB(sb); | 32 | struct udf_sb_info *sbi = UDF_SB(sb); |
33 | struct udf_part_map *map; | 33 | struct udf_part_map *map; |
34 | if (partition >= sbi->s_partitions) { | 34 | if (partition >= sbi->s_partitions) { |
35 | udf_debug("block=%d, partition=%d, offset=%d: invalid partition\n", | 35 | udf_debug("block=%u, partition=%u, offset=%u: invalid partition\n", |
36 | block, partition, offset); | 36 | block, partition, offset); |
37 | return 0xFFFFFFFF; | 37 | return 0xFFFFFFFF; |
38 | } | 38 | } |
@@ -59,7 +59,7 @@ uint32_t udf_get_pblock_virt15(struct super_block *sb, uint32_t block, | |||
59 | vdata = &map->s_type_specific.s_virtual; | 59 | vdata = &map->s_type_specific.s_virtual; |
60 | 60 | ||
61 | if (block > vdata->s_num_entries) { | 61 | if (block > vdata->s_num_entries) { |
62 | udf_debug("Trying to access block beyond end of VAT (%d max %d)\n", | 62 | udf_debug("Trying to access block beyond end of VAT (%u max %u)\n", |
63 | block, vdata->s_num_entries); | 63 | block, vdata->s_num_entries); |
64 | return 0xFFFFFFFF; | 64 | return 0xFFFFFFFF; |
65 | } | 65 | } |
@@ -83,7 +83,7 @@ uint32_t udf_get_pblock_virt15(struct super_block *sb, uint32_t block, | |||
83 | 83 | ||
84 | bh = sb_bread(sb, loc); | 84 | bh = sb_bread(sb, loc); |
85 | if (!bh) { | 85 | if (!bh) { |
86 | udf_debug("get_pblock(UDF_VIRTUAL_MAP:%p,%d,%d) VAT: %d[%d]\n", | 86 | udf_debug("get_pblock(UDF_VIRTUAL_MAP:%p,%u,%u) VAT: %u[%u]\n", |
87 | sb, block, partition, loc, index); | 87 | sb, block, partition, loc, index); |
88 | return 0xFFFFFFFF; | 88 | return 0xFFFFFFFF; |
89 | } | 89 | } |