diff options
author | Robin Dong <sanbai@taobao.com> | 2011-07-23 21:49:07 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-07-23 21:49:07 -0400 |
commit | 5718789da5b94bd4148cb7ea0f457089c26bc1c3 (patch) | |
tree | 8daf6d7e0150915220deaa3847752606dc416192 | |
parent | 6a0fe49308dcac10ab510b3c45e00eb8d5ef440e (diff) | |
download | linux-3.10-5718789da5b94bd4148cb7ea0f457089c26bc1c3.tar.gz linux-3.10-5718789da5b94bd4148cb7ea0f457089c26bc1c3.tar.bz2 linux-3.10-5718789da5b94bd4148cb7ea0f457089c26bc1c3.zip |
ext4: remove unused argument in ext4_ext_next_leaf_block
The argument "inode" in function ext4_ext_next_allocated_block looks useless,
so clean it.
Signed-off-by: Robin Dong <sanbai@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r-- | fs/ext4/extents.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 9bec432e2d2..33bbe8467bd 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -1414,8 +1414,7 @@ ext4_ext_next_allocated_block(struct ext4_ext_path *path) * ext4_ext_next_leaf_block: * returns first allocated block from next leaf or EXT_MAX_BLOCKS */ -static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode, - struct ext4_ext_path *path) +static ext4_lblk_t ext4_ext_next_leaf_block(struct ext4_ext_path *path) { int depth; @@ -1734,7 +1733,7 @@ int ext4_ext_insert_extent(handle_t *handle, struct inode *inode, fex = EXT_LAST_EXTENT(eh); next = EXT_MAX_BLOCKS; if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)) - next = ext4_ext_next_leaf_block(inode, path); + next = ext4_ext_next_leaf_block(path); if (next != EXT_MAX_BLOCKS) { ext_debug("next leaf block - %d\n", next); BUG_ON(npath != NULL); |