aboutsummaryrefslogtreecommitdiffstats
path: root/fs/logfs
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-04-21 12:33:54 +0200
committerJoern Engel <joern@logfs.org>2010-04-29 15:19:27 +0200
commit3272c8a57b77a7277a740e211fe12171e4b37e99 (patch)
treea427d7a9339c9776c566c0321218d062077cd937 /fs/logfs
parent79dba2eaa771c3173957eccfd288e0e0d12e4d3f (diff)
downloadkernel_samsung_smdk4412-3272c8a57b77a7277a740e211fe12171e4b37e99.zip
kernel_samsung_smdk4412-3272c8a57b77a7277a740e211fe12171e4b37e99.tar.gz
kernel_samsung_smdk4412-3272c8a57b77a7277a740e211fe12171e4b37e99.tar.bz2
logfs: testing the wrong variable
There is a typo here. We should test "last" instead of "first". Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Joern Engel <joern@logfs.org>
Diffstat (limited to 'fs/logfs')
-rw-r--r--fs/logfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/logfs/super.c b/fs/logfs/super.c
index 5866ee6..7fc4625 100644
--- a/fs/logfs/super.c
+++ b/fs/logfs/super.c
@@ -382,7 +382,7 @@ static struct page *find_super_block(struct super_block *sb)
if (!first || IS_ERR(first))
return NULL;
last = super->s_devops->find_last_sb(sb, &super->s_sb_ofs[1]);
- if (!last || IS_ERR(first)) {
+ if (!last || IS_ERR(last)) {
page_cache_release(first);
return NULL;
}