Home
last modified time | relevance | path

Searched refs:mount_server (Results 1 – 4 of 4) sorted by relevance

/linux-6.12.1/fs/nfs/
Dfs_context.c367 if (ctx->mount_server.protocol == XPRT_TRANSPORT_UDP || in nfs_set_mount_transport_protocol()
368 ctx->mount_server.protocol == XPRT_TRANSPORT_TCP) in nfs_set_mount_transport_protocol()
372 ctx->mount_server.protocol = XPRT_TRANSPORT_UDP; in nfs_set_mount_transport_protocol()
376 ctx->mount_server.protocol = XPRT_TRANSPORT_TCP; in nfs_set_mount_transport_protocol()
729 ctx->mount_server.port = result.uint_32; in nfs_fs_context_parse_param()
735 ctx->mount_server.version = result.uint_32; in nfs_fs_context_parse_param()
818 ctx->mount_server.protocol = XPRT_TRANSPORT_UDP; in nfs_fs_context_parse_param()
824 ctx->mount_server.protocol = XPRT_TRANSPORT_TCP; in nfs_fs_context_parse_param()
850 kfree(ctx->mount_server.hostname); in nfs_fs_context_parse_param()
851 ctx->mount_server.hostname = param->string; in nfs_fs_context_parse_param()
[all …]
Dsuper.c846 .sap = &ctx->mount_server._address, in nfs_request_mount()
848 .protocol = ctx->mount_server.protocol, in nfs_request_mount()
857 if (ctx->mount_server.version == 0) { in nfs_request_mount()
860 ctx->mount_server.version = NFS_MNT3_VERSION; in nfs_request_mount()
863 ctx->mount_server.version = NFS_MNT_VERSION; in nfs_request_mount()
866 request.version = ctx->mount_server.version; in nfs_request_mount()
868 if (ctx->mount_server.hostname) in nfs_request_mount()
869 request.hostname = ctx->mount_server.hostname; in nfs_request_mount()
876 if (ctx->mount_server.address.sa_family == AF_UNSPEC) { in nfs_request_mount()
879 ctx->mount_server.addrlen = ctx->nfs_server.addrlen; in nfs_request_mount()
[all …]
Dclient.c757 if (ctx->mount_server.addrlen) { in nfs_init_server()
758 memcpy(&server->mountd_address, &ctx->mount_server.address, in nfs_init_server()
759 ctx->mount_server.addrlen); in nfs_init_server()
760 server->mountd_addrlen = ctx->mount_server.addrlen; in nfs_init_server()
762 server->mountd_version = ctx->mount_server.version; in nfs_init_server()
763 server->mountd_port = ctx->mount_server.port; in nfs_init_server()
764 server->mountd_protocol = ctx->mount_server.protocol; in nfs_init_server()
Dinternal.h128 } mount_server; member