]> git.karo-electronics.de Git - linux-beck.git/blobdiff - fs/freevxfs/vxfs_super.c
Merge tag 'iio-for-4.9a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio...
[linux-beck.git] / fs / freevxfs / vxfs_super.c
index dfa775ef4d1da0a40442788889533f87ab4c0bcf..455ce5b77e9bf9eea279dccdf4a31a2a2154cd74 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2000-2001 Christoph Hellwig.
+ * Copyright (c) 2016 Krzysztof Blaszkowski
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -48,7 +49,7 @@
 #include "vxfs_inode.h"
 
 
-MODULE_AUTHOR("Christoph Hellwig");
+MODULE_AUTHOR("Christoph Hellwig, Krzysztof Blaszkowski");
 MODULE_DESCRIPTION("Veritas Filesystem (VxFS) driver");
 MODULE_LICENSE("Dual BSD/GPL");
 
@@ -126,6 +127,7 @@ static struct inode *vxfs_alloc_inode(struct super_block *sb)
        vi = kmem_cache_alloc(vxfs_inode_cachep, GFP_KERNEL);
        if (!vi)
                return NULL;
+       inode_init_once(&vi->vfs_inode);
        return &vi->vfs_inode;
 }