diff options
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 36313801cd5c..8aadcd7a7cf8 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c | |||
@@ -280,8 +280,8 @@ static int hypfs_fill_super(struct super_block *sb, void *data, int silent) | |||
280 | if (!sbi) | 280 | if (!sbi) |
281 | return -ENOMEM; | 281 | return -ENOMEM; |
282 | mutex_init(&sbi->lock); | 282 | mutex_init(&sbi->lock); |
283 | sbi->uid = current->uid; | 283 | sbi->uid = current_uid(); |
284 | sbi->gid = current->gid; | 284 | sbi->gid = current_gid(); |
285 | sb->s_fs_info = sbi; | 285 | sb->s_fs_info = sbi; |
286 | sb->s_blocksize = PAGE_CACHE_SIZE; | 286 | sb->s_blocksize = PAGE_CACHE_SIZE; |
287 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; | 287 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |