Home
last modified time | relevance | path

Searched refs:connection (Results 1 – 200 of 321) sorted by relevance

12

/linux-4.4.14/drivers/block/drbd/
Ddrbd_receiver.c66 static int drbd_do_features(struct drbd_connection *connection);
67 static int drbd_do_auth(struct drbd_connection *connection);
69 static void conn_wait_active_ee_empty(struct drbd_connection *connection);
261 nc = rcu_dereference(peer_device->connection->net_conf); in drbd_alloc_pages()
493 static int drbd_recv(struct drbd_connection *connection, void *buf, size_t size) in drbd_recv() argument
497 rv = drbd_recv_short(connection->data.socket, buf, size, 0); in drbd_recv()
501 drbd_info(connection, "sock was reset by peer\n"); in drbd_recv()
503 drbd_err(connection, "sock_recvmsg returned %d\n", rv); in drbd_recv()
505 if (test_bit(DISCONNECT_SENT, &connection->flags)) { in drbd_recv()
508 t = rcu_dereference(connection->net_conf)->ping_timeo * HZ/10; in drbd_recv()
[all …]
Ddrbd_main.c191 void tl_release(struct drbd_connection *connection, unsigned int barrier_nr, in tl_release() argument
199 spin_lock_irq(&connection->resource->req_lock); in tl_release()
203 list_for_each_entry(r, &connection->transfer_log, tl_requests) { in tl_release()
228 drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n", in tl_release()
233 drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n", in tl_release()
239 drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n", in tl_release()
248 list_for_each_entry(req, &connection->transfer_log, tl_requests) in tl_release()
251 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) { in tl_release()
256 spin_unlock_irq(&connection->resource->req_lock); in tl_release()
261 spin_unlock_irq(&connection->resource->req_lock); in tl_release()
[all …]
Ddrbd_nl.c185 nla_len(adm_ctx->my_addr) > sizeof(adm_ctx->connection->my_addr)) || in drbd_adm_prepare()
187 nla_len(adm_ctx->peer_addr) > sizeof(adm_ctx->connection->peer_addr))) { in drbd_adm_prepare()
227 adm_ctx->connection = conn_get_by_addrs(nla_data(adm_ctx->my_addr), in drbd_adm_prepare()
231 if (!adm_ctx->connection) { in drbd_adm_prepare()
260 : adm_ctx->connection ? adm_ctx->connection->resource : NULL; in drbd_adm_prepare()
280 if (adm_ctx->connection) { in drbd_adm_finish()
281 kref_put(&adm_ctx->connection->kref, &drbd_destroy_connection); in drbd_adm_finish()
282 adm_ctx->connection = NULL; in drbd_adm_finish()
297 static void setup_khelper_env(struct drbd_connection *connection, char **envp) in setup_khelper_env() argument
302 if (connection->my_addr_len == 0 || connection->peer_addr_len == 0) in setup_khelper_env()
[all …]
Ddrbd_state.c65 bool conn_all_vols_unconf(struct drbd_connection *connection) in conn_all_vols_unconf() argument
72 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) { in conn_all_vols_unconf()
105 enum drbd_role conn_highest_role(struct drbd_connection *connection) in conn_highest_role() argument
112 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) { in conn_highest_role()
121 enum drbd_role conn_highest_peer(struct drbd_connection *connection) in conn_highest_peer() argument
128 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) { in conn_highest_peer()
137 enum drbd_disk_state conn_highest_disk(struct drbd_connection *connection) in conn_highest_disk() argument
144 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) { in conn_highest_disk()
153 enum drbd_disk_state conn_lowest_disk(struct drbd_connection *connection) in conn_lowest_disk() argument
160 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) { in conn_lowest_disk()
[all …]
Ddrbd_worker.c112 drbd_queue_work(&peer_device->connection->sender_work, &peer_req->w); in drbd_endio_read_sec_final()
166 wake_asender(peer_device->connection); in drbd_endio_write_sec_final()
335 digest_size = crypto_hash_digestsize(peer_device->connection->csums_tfm); in w_e_send_csum()
340 drbd_csum_ee(peer_device->connection->csums_tfm, peer_req, digest); in w_e_send_csum()
429 &first_peer_device(device)->connection->sender_work, in resync_timer_fn()
567 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL; in make_resync_request() local
602 mutex_lock(&connection->data.mutex); in make_resync_request()
603 if (connection->data.socket) { in make_resync_request()
604 struct sock *sk = connection->data.socket->sk; in make_resync_request()
614 mutex_unlock(&connection->data.mutex); in make_resync_request()
[all …]
Ddrbd_req.c184 static void wake_all_senders(struct drbd_connection *connection) in wake_all_senders() argument
186 wake_up(&connection->sender_work.q_wait); in wake_all_senders()
190 void start_new_tl_epoch(struct drbd_connection *connection) in start_new_tl_epoch() argument
193 if (connection->current_tle_writes == 0) in start_new_tl_epoch()
196 connection->current_tle_writes = 0; in start_new_tl_epoch()
197 atomic_inc(&connection->current_tle_nr); in start_new_tl_epoch()
198 wake_all_senders(connection); in start_new_tl_epoch()
271 req->epoch == atomic_read(&first_peer_device(device)->connection->current_tle_nr)) in drbd_req_complete()
272 start_new_tl_epoch(first_peer_device(device)->connection); in drbd_req_complete()
338 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL; in set_if_null_req_next() local
[all …]
Ddrbd_debugfs.c307 struct drbd_connection *connection, in seq_print_resource_transfer_log_summary() argument
316 list_for_each_entry(req, &connection->transfer_log, tl_requests) { in seq_print_resource_transfer_log_summary()
331 if (&req->tl_requests == &connection->transfer_log) in seq_print_resource_transfer_log_summary()
368 struct drbd_connection *connection; in in_flight_summary_show() local
371 connection = first_connection(resource); in in_flight_summary_show()
374 if (!connection || !kref_get_unless_zero(&connection->kref)) in in_flight_summary_show()
391 if (connection->data.socket) { in in_flight_summary_show()
393 struct tcp_sock *tp = tcp_sk(connection->data.socket->sk); in in_flight_summary_show()
412 seq_print_resource_transfer_log_summary(m, resource, connection, jif); in in_flight_summary_show()
418 kref_put(&connection->kref, drbd_destroy_connection); in in_flight_summary_show()
[all …]
Ddrbd_state.h132 _conn_request_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
136 conn_request_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
140 extern bool conn_all_vols_unconf(struct drbd_connection *connection);
159 enum drbd_role conn_highest_role(struct drbd_connection *connection);
160 enum drbd_role conn_highest_peer(struct drbd_connection *connection);
161 enum drbd_disk_state conn_highest_disk(struct drbd_connection *connection);
162 enum drbd_disk_state conn_lowest_disk(struct drbd_connection *connection);
163 enum drbd_disk_state conn_highest_pdsk(struct drbd_connection *connection);
164 enum drbd_conns conn_lowest_conn(struct drbd_connection *connection);
Ddrbd_debugfs.h14 void drbd_debugfs_connection_add(struct drbd_connection *connection);
15 void drbd_debugfs_connection_cleanup(struct drbd_connection *connection);
30 static inline void drbd_debugfs_connection_add(struct drbd_connection *connection) { } in drbd_debugfs_connection_add() argument
31 static inline void drbd_debugfs_connection_cleanup(struct drbd_connection *connection) { } in drbd_debugfs_connection_cleanup() argument
Ddrbd_int.h109 #define __drbd_printk_connection(level, connection, fmt, args...) \ argument
110 printk(level "drbd %s: " fmt, (connection)->resource->name, ## args)
249 extern unsigned int drbd_header_size(struct drbd_connection *connection);
266 struct drbd_connection *connection; member
386 struct drbd_connection *connection; member
813 struct drbd_connection *connection; member
1010 struct drbd_connection *connection; member
1032 #define for_each_connection(connection, resource) \ argument
1033 list_for_each_entry(connection, &resource->connections, connections)
1035 #define for_each_connection_rcu(connection, resource) \ argument
[all …]
Ddrbd_req.h280 extern void start_new_tl_epoch(struct drbd_connection *connection);
289 extern void tl_restart(struct drbd_connection *connection, enum drbd_req_event what);
290 extern void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what);
Ddrbd_proc.c293 nc = rcu_dereference(first_peer_device(device)->connection->net_conf); in drbd_seq_show()
322 first_peer_device(device)->connection->epochs, in drbd_seq_show()
/linux-4.4.14/sound/firewire/
Dcmp.h37 int cmp_connection_init(struct cmp_connection *connection,
41 int cmp_connection_check_used(struct cmp_connection *connection, bool *used);
42 void cmp_connection_destroy(struct cmp_connection *connection);
44 int cmp_connection_establish(struct cmp_connection *connection,
46 int cmp_connection_update(struct cmp_connection *connection);
47 void cmp_connection_break(struct cmp_connection *connection);
/linux-4.4.14/fs/dlm/
Dlowcomms.c103 struct connection { struct
117 int (*rx_action) (struct connection *); /* What to do when active */ argument
118 void (*connect_action) (struct connection *); /* What to do to connect */ argument
124 struct connection *othercon; argument
129 #define sock2con(x) ((struct connection *)(x)->sk_user_data) argument
139 struct connection *con;
177 static struct connection *__find_con(int nodeid) in __find_con()
180 struct connection *con; in __find_con()
195 static struct connection *__nodeid2con(int nodeid, gfp_t alloc) in __nodeid2con()
197 struct connection *con = NULL; in __nodeid2con()
[all …]
/linux-4.4.14/net/netfilter/ipvs/
DKconfig18 be used to choose which server the connection is directed to,
45 int "IPVS connection table size (the Nth power of 2)"
49 The IPVS connection hash table uses the chaining scheme to handle
50 hash collisions. Using a big IPVS connection hash table will greatly
61 average lasting time of connection in the table. For example, your
62 virtual server gets 200 connections per second, the connection lasts
63 for 200 seconds in average in the connection table, the table size
67 Another note that each connection occupies 128 bytes effectively and
136 tristate "least-connection scheduling"
138 The least-connection scheduling algorithm directs network
[all …]
/linux-4.4.14/Documentation/networking/
Dipvs-sysctl.txt32 connection will be delivered to the same real server that was
33 servicing the previous connection. This will effectively
38 the connection is in TIME_WAIT state (which is only possible if
50 If set, maintain connection tracking entries for
55 that make use of connection tracking. It is a performance
59 will have connection tracking entries regardless of this setting.
80 7 - connection new/expire, lookup and synchronization
98 connection hash table, just in order to collect back some
138 connection immediately when a packet arrives and its
140 will be notified that the connection is closed. This is
[all …]
Dnf_conntrack-sysctl.txt7 Enable connection tracking flow accounting. 64-bit byte and packet
23 considered for connection tracking.
32 If this option is enabled, the connection tracking code will
33 provide userspace with connection tracking events via ctnetlink.
38 This option is only relevant when "reliable connection tracking
110 Size of connection tracking table. Default value is
168 Enable connection tracking flow timestamping.
Drds.txt15 reliable connection between any two nodes in the cluster. This allows
18 to N*N if you use a connection-oriented socket transport like TCP.
30 the end point of a connection. All socket operations that involve
36 reliable IB connection; the IP address is used exclusively to
94 transparently establish the underlying reliable connection
186 indicate to other end of connection that
219 eliminates the need for hardware retries on the connection.
256 loopback, stats, usermem pinning, and the connection state machine.
269 This is then queued for the individual connection and sent by the
270 connection's transport.
[all …]
Ddccp.txt18 Datagram Congestion Control Protocol (DCCP) is an unreliable, connection
51 a policy ID as argument and can only be set before the connection (i.e. changes
52 during an established connection are not supported). Currently, two policies are
102 timewait state when closing the connection (RFC 4340, 8.3). The usual case is
133 On unidirectional connections it is useful to close the unused half-connection
143 The number of active connection initiation retries (the number of
161 Default CCID for the sender-receiver half-connection. Depending on the
165 Default CCID for the receiver-sender half-connection; see tx_ccid.
Deql.txt31 and 14.4 Kbps connection. However, I am not sure that it really is
95 So far, I have only used the eql device with the DSLIP SLIP connection
97 so quickly."--) . How you configure it for other "connection"
98 managers is up to you. Most other connection managers that I've seen
100 connection.
226 because I don't have a PPP-connection manager like SLIP has with
350 single connection. This allows one to improve dial-up network
388 that the connection establishment seemed fragile for the higher
389 speeds. Once established, the connection seemed robust enough.)
Drxrpc.txt102 (*) Each connection goes to a particular "service". A connection may not go
112 connection is described by seven numbers:
122 (*) Each RxRPC operation is a "call". A connection may make up to four
124 connection at any one time.
137 (*) Security is negotiated on a per-connection basis. The connection is
141 set for the lifetime of that connection, and all subsequent calls made
143 connection lapse before the client, the security will be renegotiated if
144 the client uses the connection again.
174 (*) AF_RXRPC sockets map onto RxRPC connection bundles. Actual RxRPC
182 (*) Each connection is retained for a certain amount of time [tunable] after
[all …]
Dcxacru.txt3 While it is capable of managing/maintaining the ADSL connection without the
30 the ADSL connection when any value is set. These are logged for future
D6pack.txt131 FlexNet, the connect LED is on if there is a connection; the status LED is
152 there is still an AX.25 connection left over which an IP connection was
153 running, even if that IP connection is already closed. The problem does not
154 occur when there is a bare AX.25 connection still running. I don't know if
Dskfp.txt130 the respective port has a physical connection.
133 yellow LED was off while the green LED(s) showed the connection
200 Slow telnet connection
Dproc_net_tcp.txt13 | | | | | |--> connection state
Dip-sysctl.txt183 occurred due to a burst, connection will recover. Enable this
224 this is the initial MSS used by the connection.
249 by a fourth of RTT. This mitigates connection falsely
258 ECN is used only when both ends of the TCP connection indicate
265 also request ECN on outgoing connection attempts.
271 If the kernel detects that ECN connection misbehaves, enable fall
285 application) connection will remain in the FIN_WAIT_2 state
287 valid "receive only" state for an un-orphaned connection, an
288 orphaned connection in FIN_WAIT_2 state could otherwise wait
289 forever for the remote to close its end of the connection.
[all …]
DPLIP.txt13 This device interface allows a point-to-point connection between two
94 trigger timeout on the *other* side of a PLIP connection, to about
95 10^6/HZ usecs. If both sides of a PLIP connection are used in IRQ-less mode,
Dppp_generic.txt332 SC_NO_TCP_CCID disable connection-id compression for
376 out why a PPP connection is failing.
388 * PPPIOCSMAXCID sets the maximum connection-ID parameter (and thus the
389 number of connection slots) for the TCP header compressor and
391 argument specify the maximum connection-ID for the compressor. If
393 connection-ID for the decompressor, otherwise the decompressor's
394 maximum connection-ID is set to 15.
Dcs89x0.txt217 address of 200h, interrupt 10, and use the AUI media connection. The following
380 adapter and its network connection. Use the diagnostics 'Self Test' option to
401 * Select 'Network Test' to test the network connection and cabling.
451 The Diagnostic Network Test verifies a working network connection by
470 connection to act as the Responder. Run the CS8900/20 Setup Utility
493 connection. (Only applies to 10Base-T. The green LED has no significance for
494 a 10Base-2 or AUI connection.)
Dphy.txt9 to a MAC layer, which communicates with the physical connection through a
11 partner on the other side of the network connection (typically, an ethernet
70 Sometime during startup, the network driver needs to establish a connection
72 and drivers need to all have been loaded, so it is ready for the connection.
122 interface is a u32 which specifies the connection type used
Dcxgb.txt123 Setting large number of incoming connection requests:
178 performed in the same manner as single connection.
265 3. Transport Protocol (TP) hangs when running heavy multi-connection traffic
/linux-4.4.14/Documentation/isdn/
DINTERFACE.fax12 and when a new channel to a new connection is assigned.
59 Defines the actual state of fax connection. Set by HL or LL
60 depending on progress and type of connection.
67 Defines outgoing/send or incoming/receive connection.
80 the end of connection for the +FHNG message.
95 ISDN_TTY_FAX_FCON signals the established, outgoing connection,
98 ISDN_TTY_FAX_FCON_I signals the established, incoming connection,
158 automatic "best capabilities" connection in the eicon HL-driver)
DREADME.concap8 - connection control (establish, release)
50 the WAN connection. They also might want to send other data for their
79 encapsulation protocols will need to control the connection. Therefore,
80 some basic connection control primitives are supported. The type and
81 semantics of the connection (i.e the ISO layer where connection service
84 on top of a modem connection a connect_request will result in dialing
88 datalink connection.
134 /* to be called when a connection was set up/down.
149 - request a connection being set up by lower layer
150 - request a connection being released by lower layer
[all …]
DREADME.sc175 A) Basic HDLC connection
176 B) PPP connection
177 C) MLPPP connection
179 It should be mentioned here that you may also use a tty connection if you
183 A) 10 steps to the establishment of a basic HDLC connection
189 basic HDLC connection between its two channels. Two network
205 x) a ping should result in the establishment of the connection
208 B) Establishment of a PPP connection
214 PPP connection between the two channels. The file is almost
215 identical to the HDLC connection example except that the packet
[all …]
DREADME.audio62 Only possible if online and during this connection.
85 when a connection is made:
92 upon connection setup.
DREADME.syncppp2 connection using network interfaces.
31 To set up a PPP connection you need the ipppd .. You must start
DREADME.x2564 by an ISDN B-channel (leased line as well as dial up connection should
119 To mimic an X.25 network switch (DCE side of the connection), use
126 initiates the isdn connection uses the DTE's lap_b address while the
129 corresponding isdn connection is set up by you. At least one test
DREADME102 ATI2 Report of last connection.
151 a connection.
165 During a connection, the emulation reacts just like
301 and the "connection" between the low-level-layer and the link-level-layer
302 is established and kept until the end of the connection.
303 In all other cases no connection is established. Isdn4linux can be
377 the charge-info during and after the connection):
382 "off" means that you (or the system) cannot make any connection
386 attempt to make a connection whenever a network data packet needs
393 own. You must explicitly initiate a connection with "isdnctrl dial
[all …]
DINTERFACE454 The call is not implicitely bound to a connection.
565 a D-Channel-connection. (Response to ISDN_CMD_ACCEPTD or ISDN_CMD_DIAL)
576 a B-Channel-connection. (Response to ISDN_CMD_ACCEPTB or because the
580 connection on top of the physical B-channel is established.
586 parm.num = ASCII-String, containing type of connection (for analog
593 D-Channel-connection. This could be a response to a prior ISDN_CMD_HANGUP,
606 B-Channel-connection. This could be a response to a prior ISDN_CMD_HANGUP,
610 connection on top of the physical B-channel is released.
708 The call is not implicitely bound to a connection.
DREADME.gigaset8 This driver supports the connection of the Gigaset 307x/417x family of
10 connection. The following devices are reported to be compatible:
109 - /dev/ttyGB0 for the base driver (direct USB connection)
252 connection to the base while Call-IDs are activated. As the Gigaset
253 bases only support one DECT data connection at a time, this prevents
/linux-4.4.14/drivers/net/plip/
Dplip.c217 enum plip_connection_state connection; member
374 f = connection_state_table[nl->connection]; in plip_bh()
415 if (nl->connection == PLIP_CN_SEND) { in plip_bh_timeout_error()
432 } else if (nl->connection == PLIP_CN_RECEIVE) { in plip_bh_timeout_error()
467 nl->connection = PLIP_CN_ERROR; in plip_bh_timeout_error()
609 nl->connection = PLIP_CN_SEND; in plip_receive_packet()
682 nl->connection = PLIP_CN_SEND; in plip_receive_packet()
689 nl->connection = PLIP_CN_NONE; in plip_receive_packet()
772 if (nl->connection == PLIP_CN_RECEIVE) { in plip_send_packet()
783 if (nl->connection == PLIP_CN_RECEIVE) { in plip_send_packet()
[all …]
/linux-4.4.14/arch/um/drivers/
Dport_kern.c36 struct connection { struct
47 struct connection *conn = data; in pipe_interrupt() argument
78 struct connection *conn; in port_accept()
95 *conn = ((struct connection) in port_accept()
227 struct connection *conn; in port_wait()
239 conn = list_entry(port->connections.next, struct connection, in port_wait()
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Drenesas,fsi.txt13 - fsia,spdif-connection : FSI is connected by S/PDIF
17 - fsib,spdif-connection : same as fsia
28 fsia,spdif-connection;
Domap-twl4030.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source.
15 If the routing is not provided all possible connection will be available
Datmel-sam9x5-wm8731-audio.txt9 Each entry is a pair of strings, the first being the connection's sink,
10 the second being the connection's source.
Dsamsung,odroidx2-max98090.txt11 connection's sink, the second being the connection's source;
Dnvidia,tegra-audio-wm9712.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Datmel-wm8904.txt7 Each entry is a pair of strings, the first being the connection's sink,
8 the second being the connection's source. Valid names for sources and
Dimx-audio-wm8962.txt15 connection's sink, the second being the connection's
Dnvidia,tegra-audio-wm8753.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Dnvidia,tegra-audio-alc5632.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Dimx-audio-sgtl5000.txt15 connection's sink, the second being the connection's
Dimx-audio-es8328.txt12 connection's sink, the second being the connection's
Dnvidia,tegra-audio-max98090.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Dnvidia,tegra-audio-rt5640.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Ddavinci-evm-audio.txt9 Each entry is a pair of strings, the first being the connection's sink,
10 the second being the connection's source. Valid names for sources and
Domap-abe-twl6040.txt10 Each entry is a pair of strings, the first being the connection's sink,
11 the second being the connection's source.
Drenesas,rsrc-card.txt35 Each entry is a pair of strings, the first being the connection's sink,
36 the second being the connection's source. Valid names for sources.
Dnvidia,tegra-audio-wm8903.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Dnvidia,tegra-audio-rt5677.txt13 Each entry is a pair of strings, the first being the connection's sink,
14 the second being the connection's source. Valid names for sources and
Dics43432.txt4 host connection is the I2S interface. Apart from requirements on clock
Dfsl-asoc-card.txt45 connection's sink, the second being the connection's
Dpcm512x.txt27 external connection from the pll-out pin to the SCLK pin is assumed.
Dsimple-card.txt16 connection's sink, the second being the connection's
/linux-4.4.14/Documentation/blockdev/drbd/
Dnode-states-8.dot9 Primary -> Unknown [ label = "connection lost" ]
10 Secondary -> Unknown [ label = "connection lost" ]
Ddata-structure-v9.txt18 | connection | peer_device | | peer_device |
23 | connection | peer_device | | peer_device |
38 device and connection which they reference.
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dmicrel-ks8851.txt6 - interrupts : interrupt connection
13 - interrupts : interrupt connection
Dsmsc-lan91c111.txt6 - interrupts : interrupt connection
Dapm-xgene-enet.txt24 - phy-connection-type: Interface type between ethernet device and PHY device
67 phy-connection-type = "rgmii";
Dfsl-tsec-phy.txt55 - phy-connection-type : See ethernet.txt file in the same directory.
56 This property is only really needed if the connection is of type
57 "rgmii-id", as all other connection types are detected by hardware.
Dethernet.txt16 - phy-connection-type: the same as "phy-mode" property but described in ePAPR;
/linux-4.4.14/net/dccp/
DKconfig43 tristate "DCCP connection probing"
46 This module allows for capturing the changes to DCCP connection
51 Documentation on how to use DCCP connection probing can be found
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-bus-pci-drivers-ehci_hcd10 high-speed device is plugged in, the connection is routed
12 is plugged in, the connection is routed to the companion
17 connection to be routed to the companion controller.
Dsysfs-class-stm_source7 is directed. Reads return an existing connection or "<none>" if
Dsysfs-class-uwb_rc-wusbhc7 This starts the host controller, allowing it to accept connection from
Dsysfs-wusb_cbaf13 2. The connection manager (CM) sees a device with CBA capability.
/linux-4.4.14/include/uapi/linux/
Dncp_fs.h33 int connection; /* Connection number the server assigned us */ member
44 unsigned int connection; member
/linux-4.4.14/Documentation/devicetree/bindings/ata/
Dcavium-compact-flash.txt15 - cavium,bus-width: The width of the connection to the CF devices. Valid
18 - cavium,true-ide: Optional, if present the CF connection is in True IDE mode.
/linux-4.4.14/Documentation/mic/
Dscif_overview.txt22 SCIF exposes the notion of a connection which can be used by peer processes on
24 process in a SCIF node initiates a SCIF connection to a peer process on a
26 which are similar to connection oriented socket APIs. Connected SCIF endpoints
79 /* SCIF connection established */
/linux-4.4.14/drivers/staging/iio/addac/
DKconfig17 tristate "support SPI bus connection"
28 tristate "support I2C bus connection"
/linux-4.4.14/net/netfilter/
DKconfig44 tristate "Netfilter connection tracking support"
66 This option enables support for connection marks, used by the
89 This option enables support for connection tracking zones.
90 Normally, each connection needs to have a unique system wide
111 If this option is enabled, the connection tracking code will
113 to get notified about changes in the connection tracking state.
121 This option enables support for connection tracking timeout
131 This option enables support for connection tracking timestamping.
142 to connection tracking entries. It selected by the connlabel match.
145 tristate 'DCCP protocol connection tracking support'
[all …]
/linux-4.4.14/drivers/gpu/drm/exynos/
Dexynos_drm_vidi.c263 static DEVICE_ATTR(connection, 0644, vidi_show_connection,
277 if (vidi->connection > 1) { in vidi_connection_ioctl()
282 if (ctx->connected == vidi->connection) { in vidi_connection_ioctl()
287 if (vidi->connection) { in vidi_connection_ioctl()
310 ctx->connected = vidi->connection; in vidi_connection_ioctl()
/linux-4.4.14/Documentation/devicetree/bindings/i2c/
Di2c-cros-ec-tunnel.txt3 On some ChromeOS board designs we've got a connection to the EC (embedded
4 controller) but no direct connection to some devices on the other side of
/linux-4.4.14/arch/powerpc/boot/dts/
Dkmeter1.dts330 phy-connection-type = "rgmii-id";
346 phy-connection-type = "rgmii-id";
362 phy-connection-type = "rmii";
378 phy-connection-type = "rmii";
394 phy-connection-type = "rmii";
410 phy-connection-type = "rmii";
426 phy-connection-type = "rmii";
Dsbc8641d.dts221 phy-connection-type = "rgmii-id";
262 phy-connection-type = "rgmii-id";
291 phy-connection-type = "rgmii-id";
320 phy-connection-type = "rgmii-id";
Dmpc836x_rdk.dts278 phy-connection-type = "rgmii-rxid";
293 phy-connection-type = "rgmii-rxid";
308 phy-connection-type = "mii";
323 phy-connection-type = "mii";
Dmpc8641_hpcn_36b.dts202 phy-connection-type = "rgmii-id";
251 phy-connection-type = "rgmii-id";
280 phy-connection-type = "rgmii-id";
309 phy-connection-type = "rgmii-id";
Dmpc8641_hpcn.dts202 phy-connection-type = "rgmii-id";
251 phy-connection-type = "rgmii-id";
280 phy-connection-type = "rgmii-id";
309 phy-connection-type = "rgmii-id";
Dxcalibur1501.dts405 phy-connection-type = "sgmii";
455 phy-connection-type = "sgmii";
485 phy-connection-type = "sgmii";
515 phy-connection-type = "sgmii";
Dsocrates.dts147 phy-connection-type = "rgmii-id";
185 phy-connection-type = "rgmii-id";
Dgef_sbc610.dts281 phy-connection-type = "gmii";
320 phy-connection-type = "gmii";
Dgef_ppc9a.dts283 phy-connection-type = "gmii";
322 phy-connection-type = "gmii";
Dmpc8377_wlan.dts239 phy-connection-type = "mii";
282 phy-connection-type = "mii";
Dmpc8379_rdb.dts261 phy-connection-type = "mii";
298 phy-connection-type = "mii";
Dmpc8377_rdb.dts263 phy-connection-type = "mii";
300 phy-connection-type = "mii";
Dmpc8379_mds.dts248 phy-connection-type = "mii";
291 phy-connection-type = "mii";
Dmpc8378_rdb.dts263 phy-connection-type = "mii";
300 phy-connection-type = "mii";
Dmpc836x_mds.dts371 phy-connection-type = "rgmii-id";
386 phy-connection-type = "rgmii-id";
Dgef_sbc310.dts281 phy-connection-type = "gmii";
320 phy-connection-type = "gmii";
Dmpc8378_mds.dts250 phy-connection-type = "mii";
293 phy-connection-type = "mii";
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dp1021mds.dts184 phy-connection-type = "rgmii-id";
190 phy-connection-type = "sgmii";
195 phy-connection-type = "rgmii-id";
290 phy-connection-type = "mii";
318 phy-connection-type = "rmii";
Dp1020utm-pc.dtsi112 phy-connection-type = "rgmii-id";
118 phy-connection-type = "sgmii";
123 phy-connection-type = "rgmii-id";
Dmpc8569mds.dts266 phy-connection-type = "rgmii-id";
337 phy-connection-type = "rgmii-id";
360 phy-connection-type = "rgmii-id";
383 phy-connection-type = "rgmii-id";
405 phy-connection-type = "sgmii";
416 phy-connection-type = "sgmii";
Dp1020mbg-pc.dtsi123 phy-connection-type = "rgmii-id";
129 phy-connection-type = "sgmii";
134 phy-connection-type = "rgmii-id";
Dmvme2500.dts92 phy-connection-type = "rgmii-id";
129 phy-connection-type = "rgmii-id";
142 phy-connection-type = "rgmii-id";
Dp1010rdb.dtsi203 phy-connection-type = "rgmii-id";
209 phy-connection-type = "sgmii";
215 phy-connection-type = "sgmii";
Dp1024rdb.dtsi215 phy-connection-type = "rgmii-id";
221 phy-connection-type = "sgmii";
226 phy-connection-type = "rgmii-id";
Dp2020rdb.dts240 phy-connection-type = "rgmii-id";
246 phy-connection-type = "sgmii";
251 phy-connection-type = "rgmii-id";
Dbsc9131rdb.dtsi97 phy-connection-type = "rgmii-id";
102 phy-connection-type = "rgmii-id";
Dp1025twr.dtsi155 phy-connection-type = "rgmii-id";
165 phy-connection-type = "rgmii-id";
243 phy-connection-type = "mii";
272 phy-connection-type = "rmii";
Dbsc9132qds.dtsi105 phy-connection-type = "sgmii";
111 phy-connection-type = "sgmii";
Dp1020rdb.dtsi232 phy-connection-type = "rgmii-id";
239 phy-connection-type = "sgmii";
244 phy-connection-type = "rgmii-id";
Dp2020rdb-pc.dtsi228 phy-connection-type = "rgmii-id";
234 phy-connection-type = "sgmii";
239 phy-connection-type = "rgmii-id";
Dp1020rdb-pc.dtsi233 phy-connection-type = "rgmii-id";
240 phy-connection-type = "sgmii";
245 phy-connection-type = "rgmii-id";
Dp1021rdb-pc.dtsi241 phy-connection-type = "rgmii-id";
248 phy-connection-type = "sgmii";
254 phy-connection-type = "rgmii-id";
Dp1025rdb_32b.dts100 phy-connection-type = "mii";
127 phy-connection-type = "rmii";
Dp1020rdb-pd.dts242 phy-connection-type = "rgmii-id";
248 phy-connection-type = "sgmii";
253 phy-connection-type = "rgmii-id";
Dp2020ds.dtsi197 phy-connection-type = "rgmii-id";
203 phy-connection-type = "rgmii-id";
210 phy-connection-type = "rgmii-id";
Dp1022rdk.dts132 phy-connection-type = "rgmii-id";
138 phy-connection-type = "sgmii";
Dmpc8544ds.dtsi78 phy-connection-type = "rgmii-id";
109 phy-connection-type = "rgmii-id";
Dge_imp3a.dts191 phy-connection-type = "gmii";
197 phy-connection-type = "gmii";
Dmpc8536ds.dtsi196 phy-connection-type = "rgmii-id";
225 phy-connection-type = "rgmii-id";
Dmpc8572ds.dtsi151 phy-connection-type = "rgmii-id";
207 phy-connection-type = "rgmii-id";
221 phy-connection-type = "rgmii-id";
234 phy-connection-type = "rgmii-id";
Dp1022ds.dtsi232 phy-connection-type = "rgmii-id";
237 phy-connection-type = "rgmii-id";
Dc293pcie.dts216 phy-connection-type = "rgmii-id";
221 phy-connection-type = "rgmii-id";
Dp1025rdb.dtsi226 phy-connection-type = "rgmii-id";
233 phy-connection-type = "sgmii";
238 phy-connection-type = "rgmii-id";
Dmpc8568mds.dts209 phy-connection-type = "rgmii-id";
220 phy-connection-type = "rgmii-id";
/linux-4.4.14/Documentation/powerpc/
Dhvcs.txt270 and discards that data when a connection between a vty-server and a vty has
274 connection was severed to fetch the data from firmware before the fetch is
284 the vty-server and vty connection before the target vty has had a chance to
293 outlined below, on the other hand the initial vty-server connection to a
295 connection is never required.
297 In order to terminate the connection between a vty-server and vty the
299 Reading this attribute reveals the current connection state of the
301 vty. A one indicates that a connection is active.
304 connection between the vty-server and target vty ONLY if the vterm_state
308 the vty-server connection status and disconnecting a vty-server connection.
[all …]
/linux-4.4.14/Documentation/filesystems/
Dfuse.txt21 Filesystem connection:
23 A connection between the filesystem daemon and the kernel. The
24 connection exists until either the daemon dies, or the filesystem is
26 does _not_ break the connection, in this case it will exist until
128 Under the fuse control filesystem each connection has a directory
131 For each connection the following files exist within this directory:
143 connection. This means that all waiting requests will be aborted an
188 Aborting a filesystem connection
196 b) Network connection down
204 In either of these cases it may be useful to abort the connection to
D9p.txt57 tcp - specifying a normal TCP/IP connection
58 fd - used passed file descriptors for connection
/linux-4.4.14/arch/arm/boot/dts/
Dkirkwood-guruplug-server-plus.dts122 phy-connection-type = "rgmii-id";
130 phy-connection-type = "rgmii-id";
Dls1021a-twr.dts128 phy-connection-type = "sgmii";
135 phy-connection-type = "sgmii";
141 phy-connection-type = "rgmii-id";
Duniphier-proxstream2.dtsi221 /* chip-internal connection for DMD */
232 /* chip-internal connection for STM */
243 /* chip-internal connection for HDMI */
Dls1021a-qds.dts130 phy-connection-type = "sgmii";
137 phy-connection-type = "sgmii";
143 phy-connection-type = "rgmii-id";
Duniphier-ph1-pro5.dtsi222 /* chip-internal connection for DMD */
233 /* chip-internal connection for HDMI */
Duniphier-ph1-pro4.dtsi213 /* chip-internal connection for DMD */
224 /* chip-internal connection for HDMI */
Dberlin2cd.dtsi149 phy-connection-type = "mii";
167 phy-connection-type = "mii";
Drk3288-veyron-pinky.dts126 /* Some connection is flaky making the tsadc hang the system */
/linux-4.4.14/sound/drivers/opl3/
Dopl3_midi.c302 unsigned char connection; in snd_opl3_note_on() local
454 connection = fm->feedback_connection[0] & 0x01; in snd_opl3_note_on()
456 connection <<= 1; in snd_opl3_note_on()
457 connection |= fm->feedback_connection[1] & 0x01; in snd_opl3_note_on()
460 switch (connection) { in snd_opl3_note_on()
472 if (connection) in snd_opl3_note_on()
Dopl3_synth.c76 static int snd_opl3_set_connection(struct snd_opl3 * opl3, int connection);
528 if (voice->connection) in snd_opl3_set_voice()
601 static int snd_opl3_set_connection(struct snd_opl3 * opl3, int connection) in snd_opl3_set_connection() argument
609 reg_val = connection & (OPL3_RIGHT_4OP_0 | OPL3_RIGHT_4OP_1 | OPL3_RIGHT_4OP_2 | in snd_opl3_set_connection()
/linux-4.4.14/fs/ncpfs/
Dioctl.c49 info.connection = server->connection; in ncp_get_fs_info()
73 info2.connection = server->connection; in ncp_get_fs_info_v2()
95 u32 connection; member
139 info2.connection = server->connection; in ncp_get_compat_fs_info_v2()
Dsock.c259 h->conn_low = server->connection; in ncp_init_header()
260 h->conn_high = server->connection >> 8; in ncp_init_header()
404 if (server->connection != get_conn_number(&reply)) { in ncpdgram_rcv_proc()
435 server->connection == get_conn_number(&reply)))) { in ncpdgram_rcv_proc()
646 …)->conn_low | (((struct ncp_reply_header*)server->rxbuf)->conn_high << 8)) != server->connection) { in __ncptcp_rcv_proc()
836 server->connection = 0xFFFF; in ncp_connect()
847 server->connection = h->conn_low + (h->conn_high * 256); in ncp_connect()
Dncp_fs_sb.h53 u16 connection; /* Remote connection number */ member
/linux-4.4.14/Documentation/pti/
Dpti_intel_mid.txt21 a stable, reliable connection that will not break unless
54 // needed global to hand onto ldisc connection
96 // Three, program closes connection, and cleanup:
/linux-4.4.14/drivers/hv/
DMakefile6 hv.o connection.o channel.o \
/linux-4.4.14/net/llc/
DKconfig9 This is a Logical Link Layer type 2, connection oriented support.
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dgpio-beeper.txt7 - gpios: From common gpio binding; gpio connection to beeper enable pin.
/linux-4.4.14/drivers/usb/usbip/
Dusbip_protocol.txt9 client opens a TCP/IP connection towards the server, and sends an OP_REQ_DEVLIST
10 packet on top of the TCP/IP connection (so the actual OP_REQ_DEVLIST may be sent
13 TCP/IP connection is closed.
27 of them. First the client opens a TCP/IP connection towards the server and
29 import was successful the TCP/IP connection remains open and will be used
/linux-4.4.14/drivers/isdn/gigaset/
DKconfig12 one of the connection specific parts that follow.
46 base for connection to your system.
/linux-4.4.14/net/bluetooth/rfcomm/
DKconfig5 RFCOMM provides connection oriented stream transport. RFCOMM
/linux-4.4.14/net/rxrpc/
DMakefile10 ar-connection.o \
/linux-4.4.14/drivers/staging/iio/meter/
DKconfig59 tristate "support I2C bus connection"
69 tristate "support SPI bus connection"
/linux-4.4.14/drivers/staging/panel/
DKconfig173 0 : no connection (eg: connected to ground)
188 0 : no connection (eg: connected to ground)
203 0 : no connection (eg: connected to ground)
218 0 : no connection (eg: connected to ground)
233 0 : no connection (eg: connected to ground)
248 0 : no connection (eg: connected to ground)
/linux-4.4.14/include/uapi/sound/
Dasound_fm.h59 unsigned char connection; /* 0 for serial, 1 for parallel */ member
/linux-4.4.14/net/rds/
DMakefile2 rds-y := af_rds.o bind.o cong.o connection.o info.o message.o \
/linux-4.4.14/Documentation/devicetree/bindings/display/
Dmarvell,pxa2xx-lcdc.txt14 - port: connection to the LCD panel (see video-interfaces.txt)
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/
DMakefile11 ptlrpc_objs := client.o recover.o connection.o niobuf.o pack_generic.o
Dniobuf.c489 struct ptlrpc_connection *connection; in ptl_send_rpc() local
517 connection = request->rq_import->imp_connection; in ptl_send_rpc()
566 connection->c_peer, request->rq_xid, 0, in ptl_send_rpc()
646 connection, in ptl_send_rpc()
/linux-4.4.14/Documentation/devicetree/bindings/mips/cavium/
Ductl.txt19 - refclk-type: A string describing the reference clock connection
/linux-4.4.14/Documentation/devicetree/bindings/power/
Dtwl-charger.txt4 to know when charging is permissible, and when there is a connection
/linux-4.4.14/net/lapb/
DKconfig10 connection service to exchange data frames with one other host, and
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/
Ducc.txt51 - phy-connection-type : a string naming the controller/PHY interface type,
68 phy-connection-type = "gmii";
/linux-4.4.14/Documentation/devicetree/bindings/watchdog/
Dgpio-wdt.txt5 - gpios: From common gpio binding; gpio connection to WDT reset pin.
/linux-4.4.14/Documentation/devicetree/bindings/timer/
Darm,sp804.txt18 specifies if the irq connection is for timer 1 or timer 2. A value of 1
/linux-4.4.14/Documentation/devicetree/bindings/net/wireless/
Dti,wl1251.txt20 for optional SPI connection related properties,
/linux-4.4.14/drivers/s390/net/
DKconfig27 If you do not need any channel-to-channel connection, choose N.
36 link between VM guests. Using ifconfig a point-to-point connection
/linux-4.4.14/drivers/iio/pressure/
DKconfig65 tristate "support I2C bus connection"
74 tristate "support SPI bus connection"
/linux-4.4.14/Documentation/devicetree/bindings/display/tilcdc/
Dtilcdc.txt23 - port/ports: to describe a connection to an external encoder. The
/linux-4.4.14/drivers/net/slip/
DKconfig22 allows you to use SLIP over a regular dial up shell connection. If
55 allows you to use SLIP over a regular dial up shell connection, you
/linux-4.4.14/net/ipv6/netfilter/
DKconfig13 tristate "IPv6 connection tracking support"
22 This is IPv6 support on Layer 3 independent connection tracking.
23 Layer 3 independent connection tracking is experimental scheme
131 for IPv6 use this, but connection tracking is going to follow.
/linux-4.4.14/sound/oss/
Dopl3.c411 int connection; in set_voice_volume() local
423 connection = ((instr->operators[10] & 0x01) << 1) | (instr->operators[10 + OFFS_4OP] & 0x01); in set_voice_volume()
425 switch (connection) in set_voice_volume()
889 int connection = ((instr->operators[10] & 0x01) << 1) | (instr->operators[10 + OFFS_4OP] & 0x01); in opl3_aftertouch() local
891 switch (connection) in opl3_aftertouch()
/linux-4.4.14/net/ipv4/netfilter/
DKconfig13 tristate "IPv4 connection tracking support (required for NAT)"
22 This is IPv4 support on Layer 3 independent connection tracking.
23 Layer 3 independent connection tracking is experimental scheme
29 bool "proc/sysctl compatibility with old connection tracking"
34 layer 3 dependent connection tracking. This is needed to keep
/linux-4.4.14/drivers/iio/temperature/
DKconfig27 tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection"
/linux-4.4.14/Documentation/s390/
Ddriver-model.txt274 The netiucv driver creates an attribute 'connection' under
276 connection to the specified host.
279 number is assigned sequentially to the connections defined via the 'connection'
282 user - shows the connection partner.
/linux-4.4.14/Documentation/nfc/
Dnfc-hci.txt96 the p2p connection setup with hardware parameters that need to be passed back
110 - tm_send() is called to send data in the case of a p2p connection
164 - start() : establish the logical connection
165 - stop () : terminate the logical connection
280 connection, the error is reported through the connect completion.
/linux-4.4.14/drivers/isdn/capi/
DKconfig24 interface. It will provide a means of moving a data connection,
/linux-4.4.14/scripts/coccinelle/free/
Ddevm_free.cocci10 /// connection between the allocation function and the freeing function.
/linux-4.4.14/drivers/acpi/acpica/
Devregion.c256 context->connection = field_obj->field.resource_buffer; in acpi_ev_address_space_dispatch()
265 context->connection = field_obj->field.resource_buffer; in acpi_ev_address_space_dispatch()
/linux-4.4.14/arch/arm64/boot/dts/apm/
Dapm-shadowcat.dtsi253 phy-connection-type = "sgmii";
268 phy-connection-type = "xgmii";
Dapm-storm.dtsi796 phy-connection-type = "rgmii";
822 phy-connection-type = "sgmii";
838 phy-connection-type = "sgmii";
854 phy-connection-type = "xgmii";
871 phy-connection-type = "xgmii";
/linux-4.4.14/net/caif/
DKconfig11 based connection-oriented MUX protocol developed by ST-Ericsson for use
/linux-4.4.14/drivers/isdn/i4l/
DKconfig17 here if the other end of your ISDN connection supports it. You will
27 Say Y if the other end of the connection supports it.
/linux-4.4.14/include/uapi/drm/
Dexynos_drm.h59 unsigned int connection; member
/linux-4.4.14/Documentation/devicetree/bindings/arm/msm/
Dqcom,saw2.txt6 subsystem) into and out of low power modes via a direct connection to
/linux-4.4.14/arch/arc/boot/dts/
Daxc001.dtsi76 * and here we mimic direct connection from MB INTC to
Daxc003.dtsi79 * So here we mimic a direct connection betwen them, ignoring the
Daxc003_idu.dtsi101 * and here we mimic direct connection from MB INTC to
/linux-4.4.14/Documentation/usb/
Dwusb-cbaf45 (connection key). Device saves them for the next time it wants to
/linux-4.4.14/Documentation/arm/SA1100/
DItsy31 The serial connection we established was at:
/linux-4.4.14/drivers/input/touchscreen/
DKconfig68 You should select a bus connection too.
74 tristate "support I2C bus connection"
83 tristate "support SPI bus connection"
175 bus connection below.
183 tristate "support I2C bus connection"
192 tristate "support SPI bus connection"
213 tristate "support I2C bus connection"
222 tristate "support SPI bus connection"
/linux-4.4.14/drivers/nfc/
DKconfig55 protocol. An LLCP connection can be established between them and
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dcros-ec.txt7 compatible string used depends on the interface. Each connection method has
/linux-4.4.14/drivers/input/misc/
DKconfig50 You should select a bus connection too.
56 tristate "support I2C bus connection"
66 tristate "support SPI bus connection"
669 tristate "support I2C bus connection"
679 tristate "support SPI bus connection"
713 tristate "Support I2C bus connection"
/linux-4.4.14/Documentation/devicetree/bindings/display/exynos/
Dexynos_dsim.txt47 the connection between mipi dsi and panel.
/linux-4.4.14/net/atm/
DKconfig10 connection oriented, allowing for the negotiation of minimum
/linux-4.4.14/net/bluetooth/
DKconfig25 HCI device and connection manager, scheduler
/linux-4.4.14/net/ipx/
Daf_ipx.c422 int connection = 0; in ncp_connection_hack() local
426 connection = (((int) *(ncphdr + 5)) << 8) | (int) *(ncphdr + 3); in ncp_connection_hack()
428 connection = (((int) *(ncphdr + 9)) << 8) | (int) *(ncphdr + 8); in ncp_connection_hack()
430 if (connection) { in ncp_connection_hack()
436 if (ipx_sk(sk)->ipx_ncp_conn == connection) { in ncp_connection_hack()
/linux-4.4.14/Documentation/
Ddebugging-via-ohci1394.txt110 2) Establish a working FireWire cable connection:
113 stable connection and has matching connectors (there are small 4-pin and
/linux-4.4.14/Documentation/video4linux/
Dsoc-camera.txt14 - camera host bus - a connection between a camera host and a camera. Can be
75 from the host. .set_bus_param is used to configure physical connection
/linux-4.4.14/Documentation/sound/alsa/
DJoystick.txt20 Some adapter modules probe the physical connection of the device at

12