linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] ext4: remove unused argument in ext4_ext_next_leaf_block
@ 2011-07-22  2:23 Robin Dong
  2011-07-22  2:23 ` [PATCH 2/3] ext4: correct the debug message in ext4_ext_insert_extent Robin Dong
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Robin Dong @ 2011-07-22  2:23 UTC (permalink / raw)
  To: linux-ext4; +Cc: Robin Dong

From: Robin Dong <sanbai@taobao.com>

The argument "inode" in function ext4_ext_next_allocated_block looks useless,
so clean it.

Signed-off-by: Robin Dong <sanbai@taobao.com>
---
 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 eb63c7b..3966839 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -1447,8 +1447,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;
 
@@ -1766,7 +1765,7 @@ repeat:
 
 	/* probably next leaf has space for us? */
 	fex = EXT_LAST_EXTENT(eh);
-	next = ext4_ext_next_leaf_block(inode, path);
+	next = ext4_ext_next_leaf_block(path);
 	if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)
 	    && next != EXT_MAX_BLOCKS) {
 		ext_debug("next leaf block - %d\n", next);
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-07-24  1:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-22  2:23 [PATCH 1/3] ext4: remove unused argument in ext4_ext_next_leaf_block Robin Dong
2011-07-22  2:23 ` [PATCH 2/3] ext4: correct the debug message in ext4_ext_insert_extent Robin Dong
2011-07-24  1:55   ` Ted Ts'o
2011-07-22  2:23 ` [PATCH 3/3] ext4: correct comment for ext4_ext_check_cache Robin Dong
2011-07-24  1:55   ` Ted Ts'o
2011-07-24  1:55 ` [PATCH 1/3] ext4: remove unused argument in ext4_ext_next_leaf_block Ted Ts'o

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).