Searched refs:mount_server (Results 1 – 4 of 4) sorted by relevance
295 if (ctx->mount_server.protocol == XPRT_TRANSPORT_UDP || in nfs_set_mount_transport_protocol()296 ctx->mount_server.protocol == XPRT_TRANSPORT_TCP) in nfs_set_mount_transport_protocol()300 ctx->mount_server.protocol = XPRT_TRANSPORT_UDP; in nfs_set_mount_transport_protocol()304 ctx->mount_server.protocol = XPRT_TRANSPORT_TCP; in nfs_set_mount_transport_protocol()617 ctx->mount_server.port = result.uint_32; in nfs_fs_context_parse_param()623 ctx->mount_server.version = result.uint_32; in nfs_fs_context_parse_param()690 ctx->mount_server.protocol = XPRT_TRANSPORT_UDP; in nfs_fs_context_parse_param()696 ctx->mount_server.protocol = XPRT_TRANSPORT_TCP; in nfs_fs_context_parse_param()719 kfree(ctx->mount_server.hostname); in nfs_fs_context_parse_param()720 ctx->mount_server.hostname = param->string; in nfs_fs_context_parse_param()[all …]
809 &ctx->mount_server.address, in nfs_request_mount()811 .protocol = ctx->mount_server.protocol, in nfs_request_mount()820 if (ctx->mount_server.version == 0) { in nfs_request_mount()823 ctx->mount_server.version = NFS_MNT3_VERSION; in nfs_request_mount()826 ctx->mount_server.version = NFS_MNT_VERSION; in nfs_request_mount()829 request.version = ctx->mount_server.version; in nfs_request_mount()831 if (ctx->mount_server.hostname) in nfs_request_mount()832 request.hostname = ctx->mount_server.hostname; in nfs_request_mount()839 if (ctx->mount_server.address.sa_family == AF_UNSPEC) { in nfs_request_mount()842 ctx->mount_server.addrlen = ctx->nfs_server.addrlen; in nfs_request_mount()[all …]
729 if (ctx->mount_server.addrlen) { in nfs_init_server()730 memcpy(&server->mountd_address, &ctx->mount_server.address, in nfs_init_server()731 ctx->mount_server.addrlen); in nfs_init_server()732 server->mountd_addrlen = ctx->mount_server.addrlen; in nfs_init_server()734 server->mountd_version = ctx->mount_server.version; in nfs_init_server()735 server->mountd_port = ctx->mount_server.port; in nfs_init_server()736 server->mountd_protocol = ctx->mount_server.protocol; in nfs_init_server()
126 } mount_server; member