diff options
author | Joern Engel <joern@logfs.org> | 2010-04-27 13:45:31 +0200 |
---|---|---|
committer | Joern Engel <joern@logfs.org> | 2010-05-01 18:02:20 +0200 |
commit | ad342631f13d40aa787b9e5aaf4800f10d6c3647 (patch) | |
tree | 9881a9c68736cff0ea4d25dc1dfc09162bf8ef36 /fs/logfs | |
parent | 2e531fa0d0868f5114c2b3a782ab02eb9d6f914d (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/logfs/super.c b/fs/logfs/super.c index 7fc4625c6f0..edd99487f93 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); |