[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1314272192-7414-1-git-send-email-hao.bigrat@gmail.com>
Date: Thu, 25 Aug 2011 19:36:31 +0800
From: Robin Dong <hao.bigrat@...il.com>
To: linux-ext4@...r.kernel.org
Cc: Ronbin Dong <sanbai@...bao.com>
Subject: [PATCH 1/2] ext4: remove redundant argument in mb_find_extent()
From: Ronbin Dong <sanbai@...bao.com>
The argument of "ord" in mb_find_extent is not necessary anymore.
Signed-off-by: Robin Dong <sanbai@...bao.com>
---
fs/ext4/mballoc.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index 17a5a57..0702627 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -1432,9 +1432,8 @@ static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
break;
- ord = mb_find_order_for_block(e4b, next);
+ order = mb_find_order_for_block(e4b, next);
- order = ord;
block = next >> order;
ex->fe_len += 1 << order;
}
--
1.7.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists