Home
last modified time | relevance | path

Searched refs:servers (Results 1 – 25 of 95) sorted by relevance

1234

/linux/fs/afs/
H A Dserver_list.c18 afs_unuse_server(net, slist->servers[i].server, in afs_put_serverlist()
54 slist = kzalloc(struct_size(slist, servers, nr_servers), GFP_KERNEL); in afs_alloc_server_list()
94 if (memcmp(&slist->servers[j].server->uuid, in afs_alloc_server_list()
99 if (slist->servers[j].server == server) { in afs_alloc_server_list()
105 memmove(slist->servers + j + 1, in afs_alloc_server_list()
106 slist->servers + j, in afs_alloc_server_list()
110 slist->servers[j].server = server; in afs_alloc_server_list()
111 slist->servers[j].volume = volume; in afs_alloc_server_list()
112 slist->servers[j].flags = se_flags; in afs_alloc_server_list()
113 slist->servers[j].cb_expires_at = AFS_NO_CB_PROMISE; in afs_alloc_server_list()
[all …]
H A Dvl_list.c55 vllist = kzalloc(struct_size(vllist, servers, nr_servers), GFP_KERNEL); in afs_alloc_vlserver_list()
71 afs_put_vlserver(net, vllist->servers[i].server); in afs_put_vlserverlist()
237 struct afs_vlserver *p = previous->servers[i].server; in afs_extract_vlserver_list()
296 if (bs.priority < vllist->servers[j].priority) in afs_extract_vlserver_list()
298 if (bs.priority == vllist->servers[j].priority && in afs_extract_vlserver_list()
299 bs.weight > vllist->servers[j].weight) in afs_extract_vlserver_list()
304 memmove(vllist->servers + j + 1, in afs_extract_vlserver_list()
305 vllist->servers + j, in afs_extract_vlserver_list()
311 vllist->servers[j].priority = bs.priority; in afs_extract_vlserver_list()
312 vllist->servers[j].weight = bs.weight; in afs_extract_vlserver_list()
[all …]
H A Drotate.c45 rcu_dereference_protected(op->volume->servers, in afs_start_fs_iteration()
62 server = op->server_list->servers[i].server; in afs_start_fs_iteration()
81 server = op->server_list->servers[i].server; in afs_start_fs_iteration()
186 &op->server_list->servers[op->server_index].flags); in afs_select_fileserver()
188 &op->server_list->servers[op->server_index].flags); in afs_select_fileserver()
262 if (rcu_access_pointer(op->volume->servers) == op->server_list) { in afs_select_fileserver()
323 &op->server_list->servers[op->server_index].flags)) { in afs_select_fileserver()
326 &op->server_list->servers[op->server_index].flags); in afs_select_fileserver()
354 &op->server_list->servers[op->server_index].flags)) { in afs_select_fileserver()
357 &op->server_list->servers[op->server_index].flags); in afs_select_fileserver()
[all …]
H A Dvl_probe.c213 server = vllist->servers[i].server; in afs_send_vl_probes()
242 server = vllist->servers[i].server; in afs_wait_for_vl_probes()
258 server = vllist->servers[i].server; in afs_wait_for_vl_probes()
270 server = vllist->servers[i].server; in afs_wait_for_vl_probes()
288 server = vllist->servers[i].server; in afs_wait_for_vl_probes()
H A Dvl_alias.c76 la = rcu_dereference(vol_a->servers); in afs_compare_volume_slists()
77 lb = rcu_dereference(vol_b->servers); in afs_compare_volume_slists()
84 const struct afs_server *server_a = la->servers[a].server; in afs_compare_volume_slists()
85 const struct afs_server *server_b = lb->servers[b].server; in afs_compare_volume_slists()
H A Dcallback.c162 struct afs_server_list *slist = rcu_dereference(volume->servers); in afs_break_volume_callback()
168 if (slist->servers[i].server == server) in afs_break_volume_callback()
169 slist->servers[i].cb_expires_at = AFS_NO_CB_PROMISE; in afs_break_volume_callback()
H A Dvalidation.c162 slist = rcu_dereference(volume->servers); in __afs_is_server_excluded()
164 se = &slist->servers[i]; in __afs_is_server_excluded()
331 struct afs_server_entry *se = &slist->servers[op->server_index]; in afs_update_volume_state()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dmigrate_reuseport.c51 __s64 servers[NR_SERVERS]; member
228 test_case->servers[i] = socket(test_case->family, SOCK_STREAM, in start_servers()
230 if (!ASSERT_NEQ(test_case->servers[i], -1, "socket")) in start_servers()
233 err = setsockopt(test_case->servers[i], SOL_SOCKET, in start_servers()
238 err = bind(test_case->servers[i], in start_servers()
245 err = setsockopt(test_case->servers[i], SOL_SOCKET, in start_servers()
252 err = getsockname(test_case->servers[i], in start_servers()
260 err = setsockopt(test_case->servers[i], in start_servers()
269 err = listen(test_case->servers[i], qlen); in start_servers()
332 value = (__u64)test_case->servers[i]; in update_maps()
[all …]
H A Dcls_redirect.c308 int servers[__NR_KIND][ARRAY_SIZE(families)] = {}; in build_input()
319 &servers[UDP][i], &conns[UDP][i], in build_input()
324 &servers[TCP][i], &conns[TCP][i], in build_input()
378 close_fds((int *)servers, sizeof(servers) / sizeof(servers[0][0])); in test_cls_redirect_common()
345 int servers[__NR_KIND][ARRAY_SIZE(families)] = {}; test_cls_redirect_common() local
/linux/tools/testing/selftests/net/
H A Dso_incoming_cpu.c16 int *servers; in FIXTURE() local
96 self->servers = malloc(sizeof(int) * nr_server); in FIXTURE_SETUP()
97 ASSERT_NE(self->servers, NULL); in FIXTURE_SETUP()
110 close(self->servers[i]); in FIXTURE_TEARDOWN()
112 free(self->servers); in FIXTURE_TEARDOWN()
164 self->servers[i] = create_server(_metadata, self, variant, i); in create_servers()
167 ret = getsockname(self->servers[i], &self->addr, &self->addrlen); in create_servers()
174 set_so_incoming_cpu(_metadata, self->servers[i], i); in create_servers()
218 fd = accept(self->servers[i], &self->addr, &self->addrlen); in verify_incoming_cpu()
/linux/net/qrtr/
H A Dns.c69 struct xarray servers; member
86 xa_init(&node->servers); in node_get()
206 /* Announce the list of servers registered in this node */ in announce_servers()
207 xa_for_each(&node->servers, index, srv) { in announce_servers()
246 old = xa_store(&node->servers, port, srv, GFP_KERNEL); in server_add()
273 srv = xa_load(&node->servers, port); in server_del()
277 xa_erase(&node->servers, port); in server_del()
279 /* Broadcast the removal of local servers */ in server_del()
322 /* Announce the list of servers registered on the local node */
353 /* Advertise removal of this client to all servers o in ctrl_cmd_bye()
[all...]
/linux/fs/nfs/
H A DKconfig16 To mount file systems exported by NFS servers, you also need to
24 available in the kernel to mount NFS servers. Support for NFS
59 Some NFS servers support an auxiliary NFSv3 ACL protocol that
63 Lists on files residing on NFS servers. NFS servers enforce
70 Most NFS servers don't support the Solaris NFSv3 ACL protocol
85 To mount NFS servers using NFSv4, you also need to install user
150 This option makes the NFS client advertise to NFSv4.1 servers that
/linux/Documentation/filesystems/nfs/
H A Dclient-identifier.rst22 NFSv4 servers provide file lock guarantees and manage their
36 restarts, it indicates to servers that open and lock state
50 Each NFSv4 client presents an identifier to NFSv4 servers so that
63 NFSv4 servers tie this identifier to the principal and security
69 As part of the identity presented to servers, a good
75 - The "co_ownerid" string helps servers distinguish the client
90 NFSv4 servers utilize the "client_owner4" as described above to
185 identifying itself to servers. The "sec=" mount option does not
203 enables lease state to transition to other servers, following data
206 migration by presenting the same "client_owner4" to all servers it
/linux/Documentation/ABI/testing/
H A Dsysfs-firmware-opal-psr4 Description: Power-Shift-Ratio directory for Powernv P9 servers
14 Description: PSR sysfs attributes for Powernv P9 servers
H A Dsysfs-firmware-opal-powercap4 Description: Powercap directory for Powernv (P8, P9) servers
16 Powernv (P8, P9) servers
/linux/fs/smb/client/
H A DKconfig39 and similar very old servers.
42 mounting to SMB3 (and CIFS) compliant servers. It includes support
70 bool "Support legacy servers which use less secure dialects"
90 which are needed to mount to certain secure servers (for which more
101 servers without the user namespace prefix, but their names are
113 negotiate a feature of the older cifs dialect with servers, such as
116 for POSIX ACLs (getfacl and setfacl) to servers (such as Samba 3.10
160 servers if their addresses change or for implicit mounts of
/linux/net/netfilter/ipvs/
H A DKconfig11 virtual server based on cluster of two or more real servers. This
14 single IP address and scheduling them to real servers.
20 thus load balancing can be achieved among the servers. For more
119 connections to different real servers in a round-robin manner.
128 connections to different real servers based on server weights
130 new connections first than those with less weights, and servers
132 weights and servers with equal weights get equal connections.
214 connections to the servers through looking up a statically assigned
224 connections to the servers through looking up a statically assigned
235 network connections to the servers through looking up a statically
[all …]
/linux/drivers/parisc/
H A DKconfig12 were also used in servers from the E-class to the K-class. They
20 The HP-PB bus was used in the Nova class and K-class servers.
36 many PA-RISC workstations & servers. It includes interfaces
122 message logging) as found on high end servers such as A, L and
/linux/net/ipv4/
H A Dipconfig.c32 * NTP servers in /proc/net/ipconfig/ntp_servers
97 #define CONF_NTP_SERVERS_MAX 3 /* Maximum number of NTP servers */
612 /* Predefine NTP servers */
719 42, /* NTP servers */ in ic_dhcp_init_options()
799 /* Re-initialise all name servers and NTP servers to NONE, in case any in ic_bootp_init()
919 u8 servers; in ic_do_bootp_ext() local
940 servers= *ext/4; in ic_do_bootp_ext()
941 if (servers > CONF_NAMESERVERS_MAX) in ic_do_bootp_ext()
942 servers in ic_do_bootp_ext()
[all...]
/linux/Documentation/admin-guide/cifs/
H A Dtodo.rst96 w) Support for the Mac SMB3.1.1 extensions to improve interop with Apple servers
99 Kerberos, SCRAM and others supported by existing servers)
122 negotiated size) and send larger write sizes to modern servers.
124 4) More exhaustively test against less common servers
H A Dusage.rst13 servers. This code was developed in participation with the Protocol Freedom
139 Most current servers support SMB2.1 and SMB3 which are more secure,
144 2.2.5 or later) but the CIFS vfs works fine with a wide variety of CIFS servers.
168 The CIFS client can get and set POSIX ACLs (getfacl, setfacl) to Samba servers
208 Mac or Windows servers::
257 problem as most servers support this.
263 servers can remap such characters when an explicit mapping is specified in
297 passed in on mount. For mounts to servers
307 For servers which do not support the CIFS Unix
316 servers which do not report a uid/gid owner
[all …]
H A Dintroduction.rst15 file servers such as Windows (including Windows 2019 Server), as
25 file system function for SMB3 compliant servers, including advanced
/linux/Documentation/filesystems/
H A Dafs.rst84 volume location servers within that cell, with the latter separated by colons.
157 servers, volumes, and active servers known within that cell::
159 [root@andromeda ~]# cat /proc/fs/afs/cambridge.redhat.com/servers
174 IP addresses of the volume location servers for those cells. The cell to which
/linux/drivers/firmware/google/
H A DKconfig6 These firmware drivers are used by Google servers,
57 the EBDA on Google servers. If found, this log is exported to
/linux/Documentation/networking/
H A Dipvs-sysctl.rst50 real servers to a very busy cluster.
122 before forwarding them to real servers. If the rate is 1, then
180 connections are allowed to quiescent destination servers.
202 servers but the connection entries don't exist.
271 The number of threads that master and backup servers can use for
304 sloppy_sctp flags on backup servers. For non-persistent services

1234