Home
last modified time | relevance | path

Searched +full:server +full:- +full:side (Results 1 – 25 of 198) sorted by relevance

12345678

/linux/drivers/block/rnbd/
H A DREADME6 ------------
9 (client and server) that allow for remote access of a block device on
10 the server over RTRS protocol using the RDMA (InfiniBand, RoCE, iWARP)
12 on the client side as local block devices.
14 I/O is transferred between client and server by the RTRS transport
19 ------------
24 -----------
26 Server side:
29 Client side:
32 /sys/devices/virtual/rnbd-client/ctl/map_device
[all …]
H A Drnbd-proto.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Copyright (c) 2014 - 2018 ProfitBricks GmbH. All rights reserved.
6 * Copyright (c) 2018 - 2019 1&1 IONOS Cloud GmbH. All rights reserved.
7 * Copyright (c) 2019 - 2020 1&1 IONOS SE. All rights reserved.
13 #include <linux/blk-mq.h>
23 /* The default port number the RTRS server is listening on. */
27 * enum rnbd_msg_types - RNBD message types
28 * @RNBD_MSG_SESS_INFO: initial session info from client to server
29 * @RNBD_MSG_SESS_INFO_RSP: initial session info from server to client
45 * struct rnbd_msg_hdr - header of RNBD messages
[all …]
H A DKconfig1 # SPDX-License-Identifier: GPL-2.0-or-later
15 RTRS protocol from a target system where RNBD server is running.
20 tristate "RDMA Network Block Device driver server"
24 RNBD server is the server side of RNBD using rdma transport.
26 RNBD server allows for exporting local block devices to a remote client
/linux/drivers/infiniband/ulp/rtrs/
H A DREADME7 between client and server machines using RDMA (InfiniBand, RoCE, iWarp)
11 possibility to either write data from an sg list to the remote side
12 or to request ("read") data transfer from the remote side into a given
15 RTRS provides I/O fail-over and load-balancing capabilities by using
17 Documentation/ABI/testing/sysfs-class-rtrs-client).
26 --------
27 An established connection between a client and a server is called rtrs
29 server side for a given client for rdma transfer. A session
31 between client and server. Those are used for load balancing and failover.
36 chunks reserved for him on the server side. Their number, size and addresses
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dcgroup_tcp_skb.c1 // SPDX-License-Identifier: GPL-2.0
29 if (skb->protocol != bpf_htons(ETH_P_IPV6)) in needed_tcp_pkt()
40 if (tcph->source != bpf_htons(g_sock_port) && in needed_tcp_pkt()
41 tcph->dest != bpf_htons(g_sock_port)) in needed_tcp_pkt()
51 if (tcph->fin || !tcph->syn || !tcph->ack) in egress_accept()
65 if (!tcph->syn || tcph->fin || tcph->ack) in ingress_accept()
71 if (tcph->fin || tcph->syn || !tcph->ack) in ingress_accept()
87 if (!tcph->syn || tcph->fin || tcph->ack) in egress_connect()
100 if (tcph->fin || !tcph->syn || !tcph->ack) in ingress_connect()
117 if (tcph->fin || tcph->syn || !tcph->ack) in egress_close_remote()
[all …]
/linux/Documentation/networking/
H A Dsnmp_counter.rst17 .. _RFC1213 ipInReceives: https://tools.ietf.org/html/rfc1213#page-26
30 .. _RFC1213 ipInDelivers: https://tools.ietf.org/html/rfc1213#page-28
41 .. _RFC1213 ipOutRequests: https://tools.ietf.org/html/rfc1213#page-28
60 .. _Explicit Congestion Notification: https://tools.ietf.org/html/rfc3168#page-6
73 .. _RFC1213 ipInHdrErrors: https://tools.ietf.org/html/rfc1213#page-27
81 .. _RFC1213 ipInAddrErrors: https://tools.ietf.org/html/rfc1213#page-27
98 .. _RFC1213 ipInUnknownProtos: https://tools.ietf.org/html/rfc1213#page-27
111 .. _RFC1213 ipInDiscards: https://tools.ietf.org/html/rfc1213#page-28
118 .. _RFC1213 ipOutDiscards: https://tools.ietf.org/html/rfc1213#page-28
125 .. _RFC1213 ipOutNoRoutes: https://tools.ietf.org/html/rfc1213#page-29
[all …]
H A Dtls-handshake.rst1 .. SPDX-License-Identifier: GPL-2.0
4 In-Kernel TLS Handshake
11 over TCP. TLS provides end-to-end data integrity and confidentiality in
21 implementations so that in-kernel TLS consumers do not need to be
46 A kernel TLS consumer initiates a client-side TLS handshake on an open
50 .. code-block:: c
68 instantiated a struct file in sock->file.
75 The consumer can provide a NUL-terminated hostname in the @ta_peername
77 the DNS hostname associated with the server's IP address is used instead.
85 keys, and pre-shared keys are provided to the handshake agent in keys
[all …]
/linux/tools/usb/usbip/
H A DREADME2 # README for usbip-utils
5 # 2005-2008 Takahiro Hirofuchi
8 USB/IP protocol allows to pass USB device from server to client over the
9 network. Server is a machine which provides (shares) a USB device. Client is
10 a machine which uses USB device provided by server over the network.
11 The USB device may be either physical device connected to a server or
12 software entity created on a server using USB gadget subsystem.
15 - usbip-vhci
16 A client side kernel module which provides a virtual USB Host Controller
19 - usbip-host (stub driver)
[all …]
/linux/drivers/char/tpm/
H A Dtpm_vtpm_proxy.c1 // SPDX-License-Identifier: GPL-2.0-only
8 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
58 * Functions related to 'server side'
62 * vtpm_proxy_fops_read - Read TPM commands on 'server side'
75 struct proxy_dev *proxy_dev = filp->private_data; in vtpm_proxy_fops_read()
79 sig = wait_event_interruptible(proxy_dev->wq, in vtpm_proxy_fops_read()
80 proxy_dev->req_len != 0 || in vtpm_proxy_fops_read()
81 !(proxy_dev->state & STATE_OPENED_FLAG)); in vtpm_proxy_fops_read()
83 return -EINTR; in vtpm_proxy_fops_read()
85 mutex_lock(&proxy_dev->buf_lock); in vtpm_proxy_fops_read()
[all …]
/linux/Documentation/ABI/testing/
H A Dsysfs-class-rnbd-client1 What: /sys/class/rnbd-client
5 Description: Provide information about RNBD-client.
6 All sysfs files that are not read-only provide the usage information on read:
10 # cat /sys/class/rnbd-client/ctl/map_device
13 > [path=<[srcaddr,]dstaddr>] device_path=<full path on remote side>
18 What: /sys/class/rnbd-client/ctl/map_device
26 device_path=<full path on remote side>
33 a given session on the client and on the server.
34 I.e. "clt_hostname-srv_hostname" could be a natural choice.
37 describes a connection between the client and the server by
[all …]
H A Dsysfs-class-rnbd-server1 What: /sys/class/rnbd-server
5 Description: provide information about RNBD-server.
7 What: /sys/class/rnbd-server/ctl/
12 block device is created under /sys/class/rnbd-server/ctl/devices/.
14 What: /sys/class/rnbd-server/ctl/devices/<device_name>/block_dev
21 block_dev -> ../../../../class/block/ram0
23 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/
30 /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/
34 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/read_only
38 Description: Contains '1' if device is mapped read-only, otherwise '0'.
[all …]
H A Dsysfs-class-rtrs-server1 What: /sys/class/rtrs-server
5 Description: When a user of RTRS API creates a new session on a client side, a
8 What: /sys/class/rtrs-server/<session-name>/paths/
12 Description: When new path is created by writing to "add_path" entry on client side,
14 on server.
16 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/disconnect
21 Operations is non-blocking and returns control immediately to the caller.
23 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/hca_name
29 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/hca_port
35 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/src_addr
[all …]
/linux/tools/testing/vsock/
H A Dvsock_diag_test.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * vsock_diag_test - vsock_diag.ko test suite
29 /* Per-socket status */
96 print_vsock_addr(fp, st->msg.vdiag_src_cid, st->msg.vdiag_src_port); in print_vsock_stat()
98 print_vsock_addr(fp, st->msg.vdiag_dst_cid, st->msg.vdiag_dst_port); in print_vsock_stat()
100 sock_type_str(st->msg.vdiag_type), in print_vsock_stat()
101 sock_state_str(st->msg.vdiag_state), in print_vsock_stat()
102 sock_shutdown_str(st->msg.vdiag_shutdown), in print_vsock_stat()
103 st->msg.vdiag_ino); in print_vsock_stat()
125 if (st->msg.vdiag_ino == stat.st_ino) in find_vsock_stat()
[all …]
/linux/Documentation/networking/device_drivers/ethernet/microsoft/
H A Dnetvsc.rst1 .. SPDX-License-Identifier: GPL-2.0
4 Hyper-V network driver
10 This driver is compatible with Windows Server 2012 R2, 2016 and
17 ----------------
19 Hyper-V host version does. Windows Server 2016 and Azure
21 IPv6. Windows Server 2012 only supports checksum offload for TCP.
23 Receive Side Scaling
24 --------------------
25 Hyper-V supports receive side scaling. For TCP & UDP, packets can
41 ethtool -N eth0 rx-flow-hash udp4 sdfn
[all …]
/linux/Documentation/filesystems/smb/
H A Dsmbdirect.rst1 .. SPDX-License-Identifier: GPL-2.0
4 SMB Direct - SMB3 over RDMA
7 This document describes how to set up the Linux SMB client and server to
16 SMB Direct on the Linux SMB client can be tested against KSMBD - a
17 kernel-space SMB server.
21 - Install an RDMA device. As long as the RDMA device driver is supported
25 - Install a kernel with SMB Direct support. The first kernel release to
26 support SMB Direct on both the client and server side is 5.15. Therefore,
29 - Install cifs-utils, which provides the `mount.cifs` command to mount SMB
32 - Configure the RDMA stack
[all …]
/linux/Documentation/security/tpm/
H A Dtpm_vtpm_proxy.rst24 character device ``/dev/tpmX`` (with X=0,1,2...) and a 'server side' file
35 The result of the ioctl are the file descriptor for the 'server side'
47 .. kernel-doc:: include/uapi/linux/vtpm_proxy.h
49 .. kernel-doc:: drivers/char/tpm/tpm_vtpm_proxy.c
/linux/Documentation/filesystems/
H A D9p.rst1 .. SPDX-License-Identifier: GPL-2.0
26 http://xcpu.org/papers/xcpu-talk.pdf
30 http://xcpu.org/papers/cellfs-talk.pdf
33 * VirtFS: A Virtualization Aware File System pass-through
34 https://kernel.org/doc/ols/2010/ols2010-pages-109-120.pdf
39 For remote file server::
41 mount -t 9p 10.10.1.2 /mnt/9
45 mount -t 9p `namespace`/acme /mnt/9 -o trans=unix,uname=$USER
47 For server running on QEMU host with virtio transport::
49 mount -t 9p -o trans=virtio <mount_tag> /mnt/9
[all …]
/linux/include/uapi/linux/
H A Dmptcp_pm.h1 /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
2 /* Do not edit directly, auto-generated from: */
4 /* YNL-GEN uapi header */
17 * traffic-patterns it can take a long time until the MPTCP_EVENT_ESTABLISHED
19 * sport, dport, server-side.
22 * sport, dport, server-side.
30 * saddr6, daddr4 | daddr6, sport, dport, backup, if-idx [, error].
34 * daddr6, sport, dport, backup, if-idx [, error].
37 * saddr6, daddr4 | daddr6, sport, dport, backup, if-idx [, error].
69 #define MPTCP_PM_ADDR_ATTR_MAX (__MPTCP_PM_ADDR_ATTR_MAX - 1)
[all …]
/linux/Documentation/netlink/specs/
H A Dmptcp_pm.yaml1 # SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)
4 protocol: genetlink-legacy
7 c-family-name: mptcp-pm-name
8 c-version-name: mptcp-pm-ver
9 max-by-define: true
10 kernel-policy: per-op
11 cmd-cnt-name: --mptcp-pm-cmd-after-last
14 -
16 name: event-type
17 enum-name: mptcp-event-type
[all …]
/linux/fs/smb/common/
H A Dsmbfsctl.h1 /* SPDX-License-Identifier: LGPL-2.1+ */
22 * See MS-SMB2 Section 2.2.31 (last checked September 2021, all of that list are
23 * below). Additional detail on less common ones can be found in MS-FSCC
100 #define FSCTL_GET_REFS_VOLUME_DATA 0x000902D8 /* See MS-FSCC 2.3.24 */
120 /* Retrieve an opaque file reference for server-side data movement ie copy */
126 /* Perform server-side data movement */
138 /* Used by the DFS filter. See MS-DFSC */
140 /* Used by the DFS filter See MS-DFSC */
143 /* Native SMB symlinks since Windows Vista, see MS-FSCC 2.1.2.4 */
147 /* NFS special files used by Windows NFS server since Windows Server 2012, see MS-FSCC 2.1.2.6 */
[all …]
/linux/drivers/usb/usbip/
H A Dusbip_common.c1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4 * Copyright (C) 2015-2016 Samsung Electronics
47 return -EINVAL; in usbip_debug_store()
54 print_hex_dump(KERN_DEBUG, "usbip-core", DUMP_PREFIX_OFFSET, 16, 4, in usbip_dump_buffer()
88 struct device *dev = &udev->dev; in usbip_dump_usb_device()
92 udev->devnum, udev->devpath, usb_speed_string(udev->speed)); in usbip_dump_usb_device()
94 pr_debug("tt hub ttport %d\n", udev->ttport); in usbip_dump_usb_device()
103 pr_debug(" %2u", (udev->toggle[0] & (1 << i)) ? 1 : 0); in usbip_dump_usb_device()
108 pr_debug(" %2u", (udev->toggle[1] & (1 << i)) ? 1 : 0); in usbip_dump_usb_device()
[all …]
H A Dusbip_common.h1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4 * Copyright (C) 2015-2016 Samsung Electronics
103 * - USBIP_CMD_SUBMIT: a USB request block, corresponds to usb_submit_urb()
104 * (client to server)
106 * - USBIP_RET_SUBMIT: the result of USBIP_CMD_SUBMIT
107 * (server to client)
109 * - USBIP_CMD_UNLINK: an unlink request of a pending USBIP_CMD_SUBMIT,
111 * (client to server)
113 * - USBIP_RET_UNLINK: the result of USBIP_CMD_UNLINK
[all …]
/linux/Documentation/admin-guide/cifs/
H A Dtodo.rst21 are currently the only two server side copy mechanisms supported)
35 roundtrips to the server and improve performance. Various cases
52 i) Add support for tree connect contexts (see MS-SMB2) a new SMB3.1.1 protocol
55 j) Create UID mapping facility so server UIDs can be mapped on a per
56 mount or a per server basis to client UIDs or nobody if no mapping
62 directly from user space) Add tools to make setting various non-POSIX
64 in smb-info tool).
67 encrypted on the server is reported, but changing the attribute is not
78 move, and server network adapter changes. Currently only notifications by
79 the witness protocol for server move is supported by the Linux client.
[all …]
/linux/net/ipv4/
H A DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
40 so-called IP spoofing, however it can pose problems if you use
42 than packets from that host to you) or if you operate a non-routing
52 <file:Documentation/networking/ip-sysctl.rst>.
71 address into account. Furthermore, the TOS (Type-Of-Service) field
89 equal "cost" and chooses one of them in a non-deterministi
[all...]
/linux/net/dccp/
H A Dfeat.c

12345678