summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2012-11-08 17:19:58 (GMT)
committerTheodore Ts'o <tytso@mit.edu>2012-11-08 17:19:58 (GMT)
commitd8ec0c396083ef633a065629df1565246dbb2f33 (patch)
tree71a108386af3b52e891e26ddf01bfe2c1e808b73
parentd339450ccad1acb942fc880ca0b44c956e6d2762 (diff)
downloadlinux-fsl-qoriq-d8ec0c396083ef633a065629df1565246dbb2f33.tar.xz
ext4: remove unused assignment
Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r--fs/ext4/mballoc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index 27f421c..442caae 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -1373,7 +1373,7 @@ static int mb_find_extent(struct ext4_buddy *e4b, int block,
ex->fe_start += next;
while (needed > ex->fe_len &&
- (buddy = mb_find_buddy(e4b, order, &max))) {
+ mb_find_buddy(e4b, order, &max)) {
if (block + 1 >= max)
break;