Searched refs:mount_server (Results 1 – 4 of 4) sorted by relevance
397 if (ctx->mount_server.protocol == XPRT_TRANSPORT_UDP || in nfs_set_mount_transport_protocol()398 ctx->mount_server.protocol == XPRT_TRANSPORT_TCP) in nfs_set_mount_transport_protocol()402 ctx->mount_server.protocol = XPRT_TRANSPORT_UDP; in nfs_set_mount_transport_protocol()406 ctx->mount_server.protocol = XPRT_TRANSPORT_TCP; in nfs_set_mount_transport_protocol()800 ctx->mount_server.port = result.uint_32; in nfs_fs_context_parse_param()806 ctx->mount_server.version = result.uint_32; in nfs_fs_context_parse_param()901 ctx->mount_server.protocol = XPRT_TRANSPORT_UDP; in nfs_fs_context_parse_param()907 ctx->mount_server.protocol = XPRT_TRANSPORT_TCP; in nfs_fs_context_parse_param()933 kfree(ctx->mount_server.hostname); in nfs_fs_context_parse_param()934 ctx->mount_server.hostname = param->string; in nfs_fs_context_parse_param()[all …]
851 .sap = &ctx->mount_server._address, in nfs_request_mount()853 .protocol = ctx->mount_server.protocol, in nfs_request_mount()862 if (ctx->mount_server.version == 0) { in nfs_request_mount()865 ctx->mount_server.version = NFS_MNT3_VERSION; in nfs_request_mount()868 ctx->mount_server.version = NFS_MNT_VERSION; in nfs_request_mount()871 request.version = ctx->mount_server.version; in nfs_request_mount()873 if (ctx->mount_server.hostname) in nfs_request_mount()874 request.hostname = ctx->mount_server.hostname; in nfs_request_mount()881 if (ctx->mount_server.address.sa_family == AF_UNSPEC) { in nfs_request_mount()884 ctx->mount_server.addrlen = ctx->nfs_server.addrlen; in nfs_request_mount()[all …]
821 if (ctx->mount_server.addrlen) { in nfs_init_server()822 memcpy(&server->mountd_address, &ctx->mount_server.address, in nfs_init_server()823 ctx->mount_server.addrlen); in nfs_init_server()824 server->mountd_addrlen = ctx->mount_server.addrlen; in nfs_init_server()826 server->mountd_version = ctx->mount_server.version; in nfs_init_server()827 server->mountd_port = ctx->mount_server.port; in nfs_init_server()828 server->mountd_protocol = ctx->mount_server.protocol; in nfs_init_server()
129 } mount_server; member