diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-19 09:10:21 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-03 22:52:49 -0400 |
commit | e334cf4fe8913a8940fc93fd38cef793877b6c79 (patch) | |
tree | 3c826ee395f9a21e5d13a3082a15148476416be3 /arch/s390/hypfs/inode.c | |
parent | f78e41e3faca3f8c52a1eadbdd6ae547ae771046 (diff) |
don't pass superblock to hypfs_diag_create_files
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/s390/hypfs/inode.c')
-rw-r--r-- | arch/s390/hypfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c index 70627216ab66..aa5de3f54ce3 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c | |||
@@ -195,7 +195,7 @@ static ssize_t hypfs_aio_write(struct kiocb *iocb, const struct iovec *iov, | |||
195 | if (MACHINE_IS_VM) | 195 | if (MACHINE_IS_VM) |
196 | rc = hypfs_vm_create_files(sb->s_root); | 196 | rc = hypfs_vm_create_files(sb->s_root); |
197 | else | 197 | else |
198 | rc = hypfs_diag_create_files(sb, sb->s_root); | 198 | rc = hypfs_diag_create_files(sb->s_root); |
199 | if (rc) { | 199 | if (rc) { |
200 | pr_err("Updating the hypfs tree failed\n"); | 200 | pr_err("Updating the hypfs tree failed\n"); |
201 | hypfs_delete_tree(sb->s_root); | 201 | hypfs_delete_tree(sb->s_root); |
@@ -304,7 +304,7 @@ static int hypfs_fill_super(struct super_block *sb, void *data, int silent) | |||
304 | if (MACHINE_IS_VM) | 304 | if (MACHINE_IS_VM) |
305 | rc = hypfs_vm_create_files(root_dentry); | 305 | rc = hypfs_vm_create_files(root_dentry); |
306 | else | 306 | else |
307 | rc = hypfs_diag_create_files(sb, root_dentry); | 307 | rc = hypfs_diag_create_files(root_dentry); |
308 | if (rc) | 308 | if (rc) |
309 | return rc; | 309 | return rc; |
310 | sbi->update_file = hypfs_create_update_file(sb, root_dentry); | 310 | sbi->update_file = hypfs_create_update_file(sb, root_dentry); |