diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2008-01-28 23:58:27 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-01-28 23:58:27 -0500 |
commit | 1d03ec984ca41ba184822d1101babb3fa3e26c77 (patch) | |
tree | 6265c324e4c381d4324c69e1692fe6e6dc44cbbc /fs/ext4/extents.c | |
parent | 99e6f829a854daa6d56006cad51156e98863e73a (diff) |
ext4: Fix sparse warnings.
Fix sparse warnings related to static functions
and local variables.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r-- | fs/ext4/extents.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 68537229ee1c..754c0d36d162 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -1088,7 +1088,7 @@ static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode, | |||
1088 | * then we have to correct all indexes above. | 1088 | * then we have to correct all indexes above. |
1089 | * TODO: do we need to correct tree in all cases? | 1089 | * TODO: do we need to correct tree in all cases? |
1090 | */ | 1090 | */ |
1091 | int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, | 1091 | static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, |
1092 | struct ext4_ext_path *path) | 1092 | struct ext4_ext_path *path) |
1093 | { | 1093 | { |
1094 | struct ext4_extent_header *eh; | 1094 | struct ext4_extent_header *eh; |
@@ -1535,7 +1535,7 @@ ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block, | |||
1535 | * It's used in truncate case only, thus all requests are for | 1535 | * It's used in truncate case only, thus all requests are for |
1536 | * last index in the block only. | 1536 | * last index in the block only. |
1537 | */ | 1537 | */ |
1538 | int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, | 1538 | static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, |
1539 | struct ext4_ext_path *path) | 1539 | struct ext4_ext_path *path) |
1540 | { | 1540 | { |
1541 | struct buffer_head *bh; | 1541 | struct buffer_head *bh; |
@@ -1806,7 +1806,7 @@ ext4_ext_more_to_rm(struct ext4_ext_path *path) | |||
1806 | return 1; | 1806 | return 1; |
1807 | } | 1807 | } |
1808 | 1808 | ||
1809 | int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start) | 1809 | static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start) |
1810 | { | 1810 | { |
1811 | struct super_block *sb = inode->i_sb; | 1811 | struct super_block *sb = inode->i_sb; |
1812 | int depth = ext_depth(inode); | 1812 | int depth = ext_depth(inode); |