aboutsummaryrefslogtreecommitdiffstats
path: root/fs/logfs
diff options
context:
space:
mode:
authorJoern Engel <joern@logfs.org>2010-04-27 13:45:31 +0200
committerJoern Engel <joern@logfs.org>2010-05-01 18:02:20 +0200
commitad342631f13d40aa787b9e5aaf4800f10d6c3647 (patch)
tree9881a9c68736cff0ea4d25dc1dfc09162bf8ef36 /fs/logfs
parentLogFS: Fix typo in b6349ac8 (diff)
downloadlinux-dev-ad342631f13d40aa787b9e5aaf4800f10d6c3647.tar.xz
linux-dev-ad342631f13d40aa787b9e5aaf4800f10d6c3647.zip
logfs: Return -EINVAL if filesystem image doesn't match
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 7fc4625c6f02..edd99487f93a 100644
--- a/fs/logfs/super.c
+++ b/fs/logfs/super.c
@@ -413,7 +413,7 @@ static int __logfs_read_sb(struct super_block *sb)
page = find_super_block(sb);
if (!page)
- return -EIO;
+ return -EINVAL;
ds = page_address(page);
super->s_size = be64_to_cpu(ds->ds_filesystem_size);