diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-15 05:54:23 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2015-03-16 03:24:16 -0400 |
commit | 1be440de2ac5181495a7295fa9a4c8ad0793f056 (patch) | |
tree | a437024dbf885af33e65f8e635a2559ad5c0e122 /fs/udf | |
parent | 13f0c2b0f67d6f04b21cedce726284b67457bd2f (diff) |
udf: use int for allocated blocks instead of sector_t
Fix the following warnings:
fs/udf/balloc.c:768:15: warning: conversion to 'sector_t' from 'int'
may change the sign of the result [-Wsign-conversion]
allocated = udf_bitmap_prealloc_blocks(sb,
^
fs/udf/balloc.c:773:15: warning: conversion to 'sector_t' from 'int'
may change the sign of the result [-Wsign-conversion]
allocated = udf_table_prealloc_blocks(sb,
^
fs/udf/balloc.c:778:15: warning: conversion to 'sector_t' from 'int'
may change the sign of the result [-Wsign-conversion]
allocated = udf_bitmap_prealloc_blocks(sb,
^
fs/udf/balloc.c:783:15: warning: conversion to 'sector_t' from 'int'
may change the sign of the result [-Wsign-conversion]
allocated = udf_table_prealloc_blocks(sb,
^
fs/udf/balloc.c:791:26: warning: conversion to 'loff_t' from 'sector_t'
may change the sign of the result [-Wsign-conversion]
inode_add_bytes(inode, allocated << sb->s_blocksize_bits);
^
fs/udf/balloc.c:792:2: warning: conversion to 'int' from 'sector_t'
may alter its value [-Wconversion]
return allocated;
Suggested-by: Jan Kara <jack@suse.cz>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/balloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c index acd8e0519ac5..6d6a96b4e73f 100644 --- a/fs/udf/balloc.c +++ b/fs/udf/balloc.c | |||
@@ -758,7 +758,7 @@ inline int udf_prealloc_blocks(struct super_block *sb, | |||
758 | uint32_t block_count) | 758 | uint32_t block_count) |
759 | { | 759 | { |
760 | struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition]; | 760 | struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition]; |
761 | sector_t allocated; | 761 | int allocated; |
762 | 762 | ||
763 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) | 763 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) |
764 | allocated = udf_bitmap_prealloc_blocks(sb, | 764 | allocated = udf_bitmap_prealloc_blocks(sb, |