Example #1
0
static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(void)
{
    struct nfs_parsed_mount_data *data;

    data = kzalloc(sizeof(*data), GFP_KERNEL);
    if (data) {
        data->acregmin		= NFS_DEF_ACREGMIN;
        data->acregmax		= NFS_DEF_ACREGMAX;
        data->acdirmin		= NFS_DEF_ACDIRMIN;
        data->acdirmax		= NFS_DEF_ACDIRMAX;
        data->mount_server.port	= NFS_UNSPEC_PORT;
        data->nfs_server.port	= NFS_UNSPEC_PORT;
        data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
        data->selected_flavor	= RPC_AUTH_MAXFLAVOR;
        data->minorversion	= 0;
        data->need_mount	= true;
        data->net		= current->nsproxy->net_ns;
        security_init_mnt_opts(&data->lsm_opts);
    }
    return data;
}
Example #2
0
static int dummy_sb_get_mnt_opts(const struct super_block *sb,
				 struct security_mnt_opts *opts)
{
	security_init_mnt_opts(opts);
	return 0;
}