Home
last modified time | relevance | path

Searched full:server (Results 1 – 25 of 3315) sorted by relevance

12345678910>>...133

/openbmc/linux/fs/afs/
H A Dserver.c2 /* AFS server record management
14 static unsigned afs_server_gc_delay = 10; /* Server record timeout in seconds */
22 * Find a server by one of its addresses.
28 struct afs_server *server = NULL; in afs_find_server() local
35 if (server) in afs_find_server()
36 afs_unuse_server_notime(net, server, afs_server_trace_put_find_rsq); in afs_find_server()
37 server = NULL; in afs_find_server()
43 hlist_for_each_entry_rcu(server, &net->fs_addresses6, addr6_link) { in afs_find_server()
44 alist = rcu_dereference(server->addresses); in afs_find_server()
59 hlist_for_each_entry_rcu(server, &net->fs_addresses4, addr4_link) { in afs_find_server()
[all …]
H A Dfs_probe.c20 * outstanding server count.
23 struct afs_server *server, bool fast) in afs_schedule_fs_probe() argument
30 atj = server->probed_at; in afs_schedule_fs_probe()
41 static void afs_finished_fs_probe(struct afs_net *net, struct afs_server *server) in afs_finished_fs_probe() argument
43 bool responded = server->probe.responded; in afs_finished_fs_probe()
47 list_add_tail(&server->probe_link, &net->fs_probe_slow); in afs_finished_fs_probe()
49 server->rtt = UINT_MAX; in afs_finished_fs_probe()
50 clear_bit(AFS_SERVER_FL_RESPONDING, &server->flags); in afs_finished_fs_probe()
51 list_add_tail(&server->probe_link, &net->fs_probe_fast); in afs_finished_fs_probe()
55 afs_schedule_fs_probe(net, server, !responded); in afs_finished_fs_probe()
[all …]
H A Dvl_probe.c18 static void afs_finished_vl_probe(struct afs_vlserver *server) in afs_finished_vl_probe() argument
20 if (!(server->probe.flags & AFS_VLSERVER_PROBE_RESPONDED)) { in afs_finished_vl_probe()
21 server->rtt = UINT_MAX; in afs_finished_vl_probe()
22 clear_bit(AFS_VLSERVER_FL_RESPONDING, &server->flags); in afs_finished_vl_probe()
25 clear_bit_unlock(AFS_VLSERVER_FL_PROBING, &server->flags); in afs_finished_vl_probe()
26 wake_up_bit(&server->flags, AFS_VLSERVER_FL_PROBING); in afs_finished_vl_probe()
32 static void afs_done_one_vl_probe(struct afs_vlserver *server, bool wake_up) in afs_done_one_vl_probe() argument
34 if (atomic_dec_and_test(&server->probe_outstanding)) { in afs_done_one_vl_probe()
35 afs_finished_vl_probe(server); in afs_done_one_vl_probe()
40 wake_up_all(&server->probe_wq); in afs_done_one_vl_probe()
[all …]
/openbmc/linux/fs/smb/client/
H A Dtransport.c44 alloc_mid(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) in alloc_mid() argument
48 if (server == NULL) { in alloc_mid()
63 temp->server = server; in alloc_mid()
84 __le16 command = midEntry->server->vals->lock_cmd; in __release_mid()
89 struct TCP_Server_Info *server = midEntry->server; in __release_mid() local
94 server->ops->handle_cancelled_mid) in __release_mid()
95 server->ops->handle_cancelled_mid(midEntry, server); in __release_mid()
110 if (atomic_read(&server->num_cmds[smb_cmd]) == 0) { in __release_mid()
111 server->slowest_cmd[smb_cmd] = roundtrip_time; in __release_mid()
112 server->fastest_cmd[smb_cmd] = roundtrip_time; in __release_mid()
[all …]
H A Dconnect.c59 /* Drop the connection to not overload the server */
62 static int ip_connect(struct TCP_Server_Info *server);
63 static int generic_ip_connect(struct TCP_Server_Info *server);
71 * This should be called with server->srv_mutex held.
73 static int reconn_set_ipaddr_from_hostname(struct TCP_Server_Info *server) in reconn_set_ipaddr_from_hostname() argument
80 if (!server->hostname) in reconn_set_ipaddr_from_hostname()
83 /* if server hostname isn't populated, there's nothing to do here */ in reconn_set_ipaddr_from_hostname()
84 if (server->hostname[0] == '\0') in reconn_set_ipaddr_from_hostname()
87 len = strlen(server->hostname) + 3; in reconn_set_ipaddr_from_hostname()
94 scnprintf(unc, len, "\\\\%s", server->hostname); in reconn_set_ipaddr_from_hostname()
[all …]
H A Dsmb2transport.c30 smb3_crypto_shash_allocate(struct TCP_Server_Info *server) in smb3_crypto_shash_allocate() argument
32 struct cifs_secmech *p = &server->secmech; in smb3_crypto_shash_allocate()
50 smb311_crypto_shash_allocate(struct TCP_Server_Info *server) in smb311_crypto_shash_allocate() argument
52 struct cifs_secmech *p = &server->secmech; in smb311_crypto_shash_allocate()
77 int smb3_get_sign_key(__u64 ses_id, struct TCP_Server_Info *server, u8 *key) in smb3_get_sign_key() argument
88 /* If server is a channel, select the primary channel */ in smb3_get_sign_key()
89 pserver = SERVER_IS_CHAN(server) ? server->primary_server : server; in smb3_get_sign_key()
105 is_binding = (cifs_chan_needs_reconnect(ses, server) && in smb3_get_sign_key()
125 if (chan->server == server) { in smb3_get_sign_key()
146 smb2_find_smb_ses_unlocked(struct TCP_Server_Info *server, __u64 ses_id) in smb2_find_smb_ses_unlocked() argument
[all …]
H A Dcifs_debug.c38 void cifs_dump_detail(void *buf, struct TCP_Server_Info *server) in cifs_dump_detail() argument
46 if (!server->ops->check_message(buf, server->total_read, server)) { in cifs_dump_detail()
48 server->ops->calc_smb_size(smb)); in cifs_dump_detail()
53 void cifs_dump_mids(struct TCP_Server_Info *server) in cifs_dump_mids() argument
58 if (server == NULL) in cifs_dump_mids()
62 spin_lock(&server->mid_lock); in cifs_dump_mids()
63 list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) { in cifs_dump_mids()
80 cifs_dump_detail(mid_entry->resp_buf, server); in cifs_dump_mids()
85 spin_unlock(&server->mid_lock); in cifs_dump_mids()
119 if (tcon->ses->server->ops->dump_share_caps) in cifs_debug_tcon()
[all …]
H A Dcifsencrypt.c172 struct TCP_Server_Info *server, char *signature, in __cifs_calc_signature() argument
181 if (!is_smb1(server)) { in __cifs_calc_signature()
224 * should be called with the server->srv_mutex held.
227 struct TCP_Server_Info *server, char *signature) in cifs_calc_signature() argument
231 if (!rqst->rq_iov || !signature || !server) in cifs_calc_signature()
234 rc = cifs_alloc_hash("md5", &server->secmech.md5); in cifs_calc_signature()
238 rc = crypto_shash_init(server->secmech.md5); in cifs_calc_signature()
244 rc = crypto_shash_update(server->secmech.md5, in cifs_calc_signature()
245 server->session_key.response, server->session_key.len); in cifs_calc_signature()
251 return __cifs_calc_signature(rqst, server, signature, server->secmech.md5); in cifs_calc_signature()
[all …]
/openbmc/qemu/util/
H A Dvhost-user-server.c13 #include "qemu/vhost-user-server.h"
20 * vhost_user_server_stop() from the main loop thread. Starting the server
90 void vhost_user_server_inc_in_flight(VuServer *server) in vhost_user_server_inc_in_flight() argument
92 assert(!server->wait_idle); in vhost_user_server_inc_in_flight()
93 qatomic_inc(&server->in_flight); in vhost_user_server_inc_in_flight()
96 void vhost_user_server_dec_in_flight(VuServer *server) in vhost_user_server_dec_in_flight() argument
98 if (qatomic_fetch_dec(&server->in_flight) == 1) { in vhost_user_server_dec_in_flight()
99 if (server->wait_idle) { in vhost_user_server_dec_in_flight()
100 aio_co_wake(server->co_trip); in vhost_user_server_dec_in_flight()
105 bool vhost_user_server_has_in_flight(VuServer *server) in vhost_user_server_has_in_flight() argument
[all …]
/openbmc/qemu/contrib/ivshmem-server/
H A Divshmem-server.c15 #include "ivshmem-server.h"
18 #define IVSHMEM_SERVER_DEBUG(server, fmt, ...) do { \ argument
19 if ((server)->verbose) { \
71 /* free a peer when the server advertises a disconnection or when the
72 * server is freed */
74 ivshmem_server_free_peer(IvshmemServer *server, IvshmemServerPeer *peer) in ivshmem_server_free_peer() argument
79 IVSHMEM_SERVER_DEBUG(server, "free peer %" PRId64 "\n", peer->id); in ivshmem_server_free_peer()
81 QTAILQ_REMOVE(&server->peer_list, peer, next); in ivshmem_server_free_peer()
84 QTAILQ_FOREACH(other_peer, &server->peer_list, next) { in ivshmem_server_free_peer()
97 ivshmem_server_send_initial_info(IvshmemServer *server, IvshmemServerPeer *peer) in ivshmem_server_send_initial_info() argument
[all …]
H A Divshmem-server.h13 * The ivshmem server is a daemon that creates a unix socket in listen
15 * unix socket. For each client, the server will create some eventfd
19 * "profixied" by the server.
25 * The ivshmem server is also able to share the file descriptor
36 * Maximum number of notification vectors supported by the server
43 * Each time a client connects to an ivshmem server, a new
57 * Structure describing an ivshmem server
59 * This structure stores all information related to our server: the name
60 * of the server unix socket and the list of connected peers.
76 * Initialize an ivshmem server
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/freeradius/files/
H A D0013-raddb-certs-Makefile-fix-the-occasional-verification.patch11 openssl pkcs12 -in server.p12 -out server.pem -passin pass:'whatever' -passout pass:'whatever'
12 chmod g+r server.pem
13 C = FR, ST = Radius, O = Example Inc., CN = Example Server Certificate, emailAddress = admin@exampl…
17 error server.pem: verification failed
18 make: *** [Makefile:107: server.vrfy] Error 2
20 It seems the ca.pem mismatchs server.pem which results in failing to
21 execute "openssl verify -CAfile ca.pem server.pem", so add to check
35 @@ -59,7 +59,7 @@ passwords.mk: server.cnf ca.cnf client.cnf inner-server.cnf
69 server.csr server.key: server.cnf
70 - $(OPENSSL) req -new -out server.csr -keyout server.key -config ./server.cnf
[all …]
/openbmc/linux/fs/nfs/
H A Dclient.c215 static void pnfs_init_server(struct nfs_server *server) in pnfs_init_server() argument
217 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC"); in pnfs_init_server()
229 static void pnfs_init_server(struct nfs_server *server) in pnfs_init_server() argument
444 * Mark a server as ready or failed
558 static void nfs_destroy_server(struct nfs_server *server) in nfs_destroy_server() argument
560 if (server->nlm_host) in nfs_destroy_server()
561 nlmclnt_done(server->nlm_host); in nfs_destroy_server()
567 static int nfs_start_lockd(struct nfs_server *server) in nfs_start_lockd() argument
570 struct nfs_client *clp = server->nfs_client; in nfs_start_lockd()
576 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ? in nfs_start_lockd()
[all …]
H A Dnfs4client.c48 * Per auth flavor data server rpc clients
129 * Find or create a DS rpc client with th MDS server rpc client auth flavor
237 * Set up the connection to the server before we add add to the in nfs4_alloc_client()
384 * The create session reply races with the server back in nfs41_init_client()
486 * "drop," but server trunking discovery claims "drop" and "keep" are
487 * actually the same server. Swap the callback IDs so that "keep"
488 * will continue to use the callback ident the server now knows about,
573 * nfs40_walk_client_list - Find server that recognizes a client ID
610 * caused the server to return a new cl_confirm. So if in nfs40_walk_client_list()
612 * server that just returned the same cl_confirm by in nfs40_walk_client_list()
[all …]
/openbmc/obmc-ikvm/
H A Dikvm_server.cpp18 Server::Server(const Args& args, Input& i, Video& v) : in Server() function in ikvm::Server
25 server = rfbGetScreen(&argc, commandLine.argv, video.getWidth(), in Server()
29 if (!server) in Server()
40 server->screenData = this; in Server()
41 server->desktopName = "OpenBMC IKVM"; in Server()
42 server->frameBuffer = framebuffer.data(); in Server()
43 server->newClientHook = newClient; in Server()
44 server->cursor = rfbMakeXCursor(cursorWidth, cursorHeight, (char*)cursor, in Server()
46 server->cursor->xhot = 1; in Server()
47 server->cursor->yhot = 1; in Server()
[all …]
/openbmc/obmc-console/
H A Dconsole-server.c2 * Console server process for OpenBMC
43 #include "console-server.h"
72 console_server_find_released_pollfd(struct console_server *server) in console_server_find_released_pollfd() argument
74 for (size_t i = 0; i < server->capacity_pollfds; i++) { in console_server_find_released_pollfd()
75 struct pollfd *p = &server->pollfds[i]; in console_server_find_released_pollfd()
83 // returns the index of that pollfd in server->pollfds
84 // we cannot return a pointer because 'realloc' may move server->pollfds
85 ssize_t console_server_request_pollfd(struct console_server *server, int fd, in console_server_request_pollfd() argument
91 index = console_server_find_released_pollfd(server); in console_server_request_pollfd()
94 const size_t newcap = server->capacity_pollfds + 1; in console_server_request_pollfd()
[all …]
H A Dconsole-mux.c9 #include "console-server.h"
99 console_mux_release_gpio_lines(struct console_server *server) in console_mux_release_gpio_lines() argument
101 for (unsigned long i = 0; i < server->mux->n_mux_gpios; i++) { in console_mux_release_gpio_lines()
102 struct console_gpio *gpio = &server->mux->mux_gpios[i]; in console_mux_release_gpio_lines()
112 console_mux_request_gpio_lines(struct console_server *server, in console_mux_request_gpio_lines() argument
119 for (server->mux->n_mux_gpios = 0; *current; in console_mux_request_gpio_lines()
120 server->mux->n_mux_gpios++) { in console_mux_request_gpio_lines()
121 size_t i = server->mux->n_mux_gpios; in console_mux_request_gpio_lines()
123 &server->mux->mux_gpios[i], &current); in console_mux_request_gpio_lines()
125 console_mux_release_gpio_lines(server); in console_mux_request_gpio_lines()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/server/
H A Dxmlrpcserver.py2 # BitBake XMLRPC Server Interface
13 from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler
14 import bb.server.xmlrpcclient
22 # "Bitbake-token" field (this comes from the server). If the two are not
23 # equal, it is assumed that a client is trying to connect to the server
24 # while another client is connected to the server. In this case, a 503 error
27 def __init__(self, request, client_address, server): argument
28 self.server = server
29 SimpleXMLRPCRequestHandler.__init__(self, request, client_address, server)
36 if 0 and remote_token != self.server.connection_token and remote_token != "observer":
[all …]
/openbmc/linux/fs/nfsd/
H A DKconfig3 tristate "NFS server support"
16 protocol. To compile the NFS server support as a module,
19 You may choose to use a user-space NFS server instead, in which
25 the Linux NFS server implementation is available via the
29 available to clients mounting the NFS server on this system.
36 bool "NFS server support for NFS version 2 (DEPRECATED)"
47 bool "NFS server support for the NFSv2 ACL protocol extension"
51 bool "NFS server support for the NFSv3 ACL protocol extension"
61 This option enables support in your system's NFS server for the
63 POSIX ACLs on files exported by your system's NFS server. NFS
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/
H A Dindex.html12 …src="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.1.tar.bz2">xorg-server-1.0.…
13 …="/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.1.tar.gz">xorg-server-1.0.1…
14 …src="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.2.tar.bz2">xorg-server-1.0.…
15 …="/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.2.tar.gz">xorg-server-1.0.2…
16 …c="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.2.tar.bz2">xorg-server-1.0…
17 …"/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.2.tar.gz">xorg-server-1.0…
18 …="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.901.tar.bz2">xorg-server-1.…
19 …/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.901.tar.gz">xorg-server-1.…
20 …="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.902.tar.bz2">xorg-server-1.…
21 …/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.902.tar.gz">xorg-server-1.…
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/
H A Drp-pppoe_3.15.bb1 SUMMARY = "A user-mode PPPoE client and server suite for Linux"
14 file://pppoe-server.default \
15 file://pppoe-server.init \
16 file://pppoe-server.service \
32 install -m 0644 ${UNPACKDIR}/pppoe-server.service ${D}${systemd_unitdir}/system
33 sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service
34 sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service
44 install -m 0644 ${UNPACKDIR}/pppoe-server.default ${D}${sysconfdir}/default/pppoe-server
45 install -m 0755 ${UNPACKDIR}/pppoe-server.init ${D}${sysconfdir}/init.d/pppoe-server
51 SYSTEMD_PACKAGES = "${PN}-server"
[all …]
/openbmc/phosphor-logging/phosphor-rsyslog-config/
H A Dserver-conf.hpp3 #include "xyz/openbmc_project/Network/Client/server.hpp"
7 #include <sdbusplus/server/object.hpp>
17 using NetworkClient = sdbusplus::xyz::openbmc_project::Network::server::Client;
18 using Iface = sdbusplus::server::object_t<NetworkClient>;
21 /** @class Server
22 * @brief Configuration for rsyslog server
25 * provide remote rsyslog server's address and port.
27 class Server : public Iface class
30 Server() = delete;
31 Server(const Server&) = delete;
[all …]
/openbmc/smbios-mdr/include/
H A Ddimm.hpp21 #include <xyz/openbmc_project/Association/Definitions/server.hpp>
22 #include <xyz/openbmc_project/Inventory/Connector/Slot/server.hpp>
23 #include <xyz/openbmc_project/Inventory/Decorator/Asset/server.hpp>
24 #include <xyz/openbmc_project/Inventory/Decorator/LocationCode/server.hpp>
25 #include <xyz/openbmc_project/Inventory/Item/Dimm/MemoryLocation/server.hpp>
26 #include <xyz/openbmc_project/Inventory/Item/Dimm/server.hpp>
27 #include <xyz/openbmc_project/Inventory/Item/server.hpp>
28 #include <xyz/openbmc_project/State/Decorator/OperationalStatus/server.hpp>
37 sdbusplus::server::xyz::openbmc_project::inventory::item::Dimm::DeviceType;
40 sdbusplus::server::xyz::openbmc_project::inventory::item::Dimm::Ecc;
[all …]
/openbmc/qemu/docs/interop/
H A Dbarrier.rst13 Message format between the server and client is in two parts:
19 command. The first command between the server and the client
32 server -> client
38 ``minor`` = protocol major version number supported by server
40 ``major`` = protocol minor version number supported by server
46 client ->server
50 Respond to hello from server
62 client ->server
77 client -> server
87 server -> client
[all …]
/openbmc/phosphor-hwmon/
H A Dinterface.hpp3 #include <sdbusplus/server.hpp>
4 #include <xyz/openbmc_project/Common/Priority/server.hpp>
5 #include <xyz/openbmc_project/Control/FanPwm/server.hpp>
6 #include <xyz/openbmc_project/Control/FanSpeed/server.hpp>
7 #include <xyz/openbmc_project/Sensor/Accuracy/server.hpp>
8 #include <xyz/openbmc_project/Sensor/Threshold/Critical/server.hpp>
9 #include <xyz/openbmc_project/Sensor/Threshold/Warning/server.hpp>
10 #include <xyz/openbmc_project/Sensor/Value/server.hpp>
11 #include <xyz/openbmc_project/State/Decorator/OperationalStatus/server.hpp>
14 using ServerObject = typename sdbusplus::server::object_t<T...>;
[all …]

12345678910>>...133