X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;ds=inline;f=lustre%2Fllite%2Fsuper.c;h=133407ac3fb73ec35c7b0f5233f02079f5590896;hb=bd1b99d7caa6ab2b7c771524af9178a3da69eeab;hp=4d2befe9fcd0da0a74877a66bd84b28f8a74786e;hpb=227dea74c6bd44af188f9f39fe2982a8d5da4023;p=fs%2Flustre-release.git diff --git a/lustre/llite/super.c b/lustre/llite/super.c index 4d2befe..133407a 100644 --- a/lustre/llite/super.c +++ b/lustre/llite/super.c @@ -61,30 +61,30 @@ static struct super_block *lustre_read_super(struct super_block *sb, } static struct file_system_type lustre_lite_fs_type = { - name: "lustre_lite", - fs_flags: FS_NFSEXP_FSID, - read_super: ll_read_super, - owner: THIS_MODULE, + .owner = THIS_MODULE, + .name = "lustre_lite", + .fs_flags = FS_NFSEXP_FSID, + .read_super = ll_read_super, }; /* exported operations */ struct super_operations lustre_super_operations = { - read_inode2: ll_read_inode2, - clear_inode: ll_clear_inode, - // delete_inode: ll_delete_inode, - put_super: lustre_put_super, - statfs: ll_statfs, - umount_begin: ll_umount_begin, - fh_to_dentry: ll_fh_to_dentry, - dentry_to_fh: ll_dentry_to_fh + .read_inode2 = ll_read_inode2, + .clear_inode = ll_clear_inode, +// .delete_inode = ll_delete_inode, + .put_super = lustre_put_super, + .statfs = ll_statfs, + .umount_begin = ll_umount_begin, + .fh_to_dentry = ll_fh_to_dentry, + .dentry_to_fh = ll_dentry_to_fh }; static struct file_system_type lustre_fs_type = { - name: "lustre", - fs_flags: FS_NFSEXP_FSID, - read_super: lustre_read_super, - owner: THIS_MODULE, + .owner = THIS_MODULE, + .name = "lustre", + .fs_flags = FS_NFSEXP_FSID, + .read_super = lustre_read_super, }; static int __init init_lustre_lite(void)