Home
last modified time | relevance | path

Searched refs:received (Results 1 – 25 of 486) sorted by relevance

12345678910>>...20

/linux/Documentation/networking/device_drivers/ethernet/mellanox/mlx5/
H A Dcounters.rst145 - The number of packets received on ring i.
149 - The number of bytes received on ring i.
191 - Number of received packets processed using hardware-accelerated GRO. The
192 number of hardware GRO offloaded packets received on ring i. Only true GRO
197 - Number of received bytes processed using hardware-accelerated GRO. The
198 number of hardware GRO offloaded bytes received on ring i. Only true GRO
238 - The number of LRO packets received on ring i [#accel]_.
242 - The number of LRO bytes received on ring i [#accel]_.
246 - The number of received packets where the ECN mark was turned on.
250 - The number of dropped received packets due to length which arrived to RQ
[all …]
/linux/drivers/mfd/
H A Dqnap-mcu.c47 size_t received; member
163 reply->data[reply->received] = *src++; in qnap_mcu_receive_buf()
164 reply->received++; in qnap_mcu_receive_buf()
166 if (reply->received == reply->length) { in qnap_mcu_receive_buf()
191 if (qnap_mcu_is_error_msg(reply->received) && in qnap_mcu_receive_buf()
192 qnap_mcu_verify_checksum(reply->data, reply->received) && in qnap_mcu_receive_buf()
193 qnap_mcu_reply_is_any_error(mcu, reply->data, reply->received)) { in qnap_mcu_receive_buf()
231 reply->received = 0; in qnap_mcu_exec()
245 if (!qnap_mcu_verify_checksum(rx, reply->received)) { in qnap_mcu_exec()
250 if (qnap_mcu_reply_is_any_error(mcu, rx, reply->received)) in qnap_mcu_exec()
/linux/Documentation/networking/device_drivers/ethernet/altera/
H A Daltera_tse.rst95 received, the DMA logic generates an interrupt. The driver handles a receive
164 received. This count does not include any error packets such as CRC errors,
170 is received.
175 received.
183 successfully received by the controller.
191 received by the network controller.
194 a count of the number of packets received containing errors that prevented the
201 statistic is a count of the number of packets received that were not addressed
205 statistic is a count of the number of packets received that were addressed to
209 statistic is a count of the number of packets received that were addressed to
[all …]
/linux/tools/testing/selftests/net/packetdrill/
H A Dtcp_timestamping_server.pkt40 // SCM_TSTAMP_SCHED for the first chunk should be received almost immediately
58 // SCM_TSTAMP_SND for the first chunk should be received almost immediately
76 // SCM_TSTAMP_SCHED for the second chunk should be received almost immediately
94 // SCM_TSTAMP_SND for the second chunk should be received almost immediately
112 // SCM_TSTAMP_ACK for the first chunk should be received at t=20ms.
129 // SCM_TSTAMP_ACK for the second chunk should be received at t=30ms.
H A Dtcp_timestamping_client-only-last-byte.pkt37 // SCM_TSTAMP_SCHED for the last byte should be received almost immediately
58 // SCM_TSTAMP_SND for the last byte should be received almost immediately
76 // SCM_TSTAMP_ACK for the last byte should be received at t=30ms.
/linux/include/trace/events/
H A Drpcgss.h258 u32 received
261 TP_ARGS(rqstp, expected, received),
265 __field(u32, received)
272 __entry->received = received;
279 __entry->expected, __entry->received)
367 u32 received
370 TP_ARGS(task, expected, received),
376 __field(u32, received)
383 __entry->received = received;
389 __entry->expected, __entry->received)
/linux/Documentation/ABI/testing/
H A Dsysfs-class-net-statistics14 Indicates the number of multicast packets received by this
22 Indicates the number of bytes received by this network device.
31 Indicates the number of compressed packets received by this
40 Indicates the number of packets received with a CRC (FCS) error
49 Indicates the number of packets received by the network device
76 Indicates the number of received frames with error, such as
86 Indicates the number of received error packet with a length
95 Indicates the number of received packets that have been missed
104 Indicates the number of received packets that were dropped on
112 Indicates the number of received packets that are oversized
[all …]
H A Ddebugfs-scmi-raw9 Any subsequently received response can be read from this same
24 Any subsequently received response can be read from this same
26 Any additional delayed response received afterwards can be read
43 Any subsequently received response can be read from this same
60 Any subsequently received response can be read from this same
62 Any additional delayed response received afterwards can be read
75 generally unexpectedly received SCMI message, for instance <n>,
97 causes the internal queues of any kind of received message,
113 Any subsequently received response can be read from this same
137 Any subsequently received response can be read from this same
[all …]
H A Dsysfs-driver-qaic5 Description: Number of correctable errors received from device since driver is loaded.
11 Description: Number of uncorrectable errors received from device since driver is loaded.
17 Description: Number of uncorrectable non-fatal errors received from device since driver
/linux/tools/testing/selftests/net/forwarding/
H A Dtc_taprio.sh175 local received
183 received=$(isochron_report_num_received "$isochron_dat")
184 if [ "$received" != "$NUM_PKTS" ]; then
255 local received
269 received=$(isochron_report_num_received "$isochron_dat")
270 [ "$received" = "$NUM_PKTS" ]
273 if [ $should_fail = 0 ] && [ "$received" = "$NUM_PKTS" ]; then
/linux/drivers/net/ethernet/sfc/siena/
H A Dselftest.c290 struct efx_loopback_payload received; in efx_siena_loopback_rx_packet() local
301 memcpy(&received.packet, buf_ptr, in efx_siena_loopback_rx_packet()
303 received.ip.saddr = payload->ip.saddr; in efx_siena_loopback_rx_packet()
305 received.ip.check = payload->ip.check; in efx_siena_loopback_rx_packet()
308 if (pkt_len < sizeof(received.header)) { in efx_siena_loopback_rx_packet()
316 if (memcmp(&received.header, &payload->header, ETH_HLEN) != 0) { in efx_siena_loopback_rx_packet()
333 if (memcmp(&received.ip, &payload->ip, sizeof(payload->ip)) != 0) { in efx_siena_loopback_rx_packet()
341 if (memcmp(&received.msg, &payload->msg, sizeof(received.msg)) != 0) { in efx_siena_loopback_rx_packet()
349 if (received.iteration != payload->iteration) { in efx_siena_loopback_rx_packet()
352 "%s loopback test\n", ntohs(received.iteration), in efx_siena_loopback_rx_packet()
/linux/drivers/net/ethernet/sfc/falcon/
H A Dselftest.c292 struct ef4_loopback_payload received; in ef4_loopback_rx_packet() local
303 memcpy(&received.packet, buf_ptr, in ef4_loopback_rx_packet()
305 received.ip.saddr = payload->ip.saddr; in ef4_loopback_rx_packet()
307 received.ip.check = payload->ip.check; in ef4_loopback_rx_packet()
310 if (pkt_len < sizeof(received.header)) { in ef4_loopback_rx_packet()
318 if (memcmp(&received.header, &payload->header, ETH_HLEN) != 0) { in ef4_loopback_rx_packet()
335 if (memcmp(&received.ip, &payload->ip, sizeof(payload->ip)) != 0) { in ef4_loopback_rx_packet()
343 if (memcmp(&received.msg, &payload->msg, sizeof(received.msg)) != 0) { in ef4_loopback_rx_packet()
351 if (received.iteration != payload->iteration) { in ef4_loopback_rx_packet()
354 "%s loopback test\n", ntohs(received.iteration), in ef4_loopback_rx_packet()
/linux/drivers/net/ethernet/sfc/
H A Dselftest.c289 struct efx_loopback_payload received; in efx_loopback_rx_packet() local
300 memcpy(&received.packet, buf_ptr, in efx_loopback_rx_packet()
302 received.ip.saddr = payload->ip.saddr; in efx_loopback_rx_packet()
304 received.ip.check = payload->ip.check; in efx_loopback_rx_packet()
307 if (pkt_len < sizeof(received.header)) { in efx_loopback_rx_packet()
315 if (memcmp(&received.header, &payload->header, ETH_HLEN) != 0) { in efx_loopback_rx_packet()
332 if (memcmp(&received.ip, &payload->ip, sizeof(payload->ip)) != 0) { in efx_loopback_rx_packet()
340 if (memcmp(&received.msg, &payload->msg, sizeof(received.msg)) != 0) { in efx_loopback_rx_packet()
348 if (received.iteration != payload->iteration) { in efx_loopback_rx_packet()
351 "%s loopback test\n", ntohs(received.iteration), in efx_loopback_rx_packet()
/linux/drivers/net/can/dev/
H A Drx-offload.c179 int received = 0; in can_rx_offload_irq_offload_timestamp() local
195 received++; in can_rx_offload_irq_offload_timestamp()
198 return received; in can_rx_offload_irq_offload_timestamp()
205 int received = 0; in can_rx_offload_irq_offload_fifo() local
215 received++; in can_rx_offload_irq_offload_fifo()
218 return received; in can_rx_offload_irq_offload_fifo()
/linux/Documentation/admin-guide/media/
H A Draspberrypi-rp1-cfe.rst14 received from the CSI-2 to the memory. One of those streams can also be routed
16 (e.g. non-scaled and downscaled versions) of the received frames to memory and
17 provide statistics of the received frames.
31 subdevices for the CSI-2 received and the FE that connects the video devices in
58 can be used to capture video frames or metadata received from the CSI-2.
/linux/drivers/accessibility/speakup/
H A Dkobjects.c82 static void report_char_chartab_status(int reset, int received, int used, in report_char_chartab_status() argument
94 } else if (received) { in report_char_chartab_status()
97 used, received, object_type[do_characters]); in report_char_chartab_status()
124 int received = 0; in chars_chartab_store() local
143 received++; in chars_chartab_store()
221 report_char_chartab_status(reset, received, used, rejected, in chars_chartab_store()
727 static void report_msg_status(int reset, int received, int used, in report_msg_status() argument
736 } else if (received) { in report_msg_status()
739 used, received, groupname); in report_msg_status()
759 int received = 0; in message_store_helper() local
[all …]
/linux/sound/pci/echoaudio/
H A Dmidi.c103 short int count, midi_byte, i, received; in midi_service_irq() local
112 received = 0; in midi_service_irq()
126 chip->midi_buffer[received++] = (u8)midi_byte; in midi_service_irq()
129 return received; in midi_service_irq()
/linux/Documentation/userspace-api/media/cec/
H A Dcec-pin-error-inj.rst50 # <op>[,<mode>] rx-add-byte add a spurious byte to the received CEC message
51 # <op>[,<mode>] rx-remove-byte remove the last byte from the received CEC message
108 received or transmitted message, ``always`` to always trigger the error
112 So '``any rx-nack``' will NACK the next received CEC message,
113 '``any,always rx-nack``' will NACK all received CEC messages and
115 received and do that only for every other received message.
170 otherwise the opcode hasn't been received yet. This tests if the
177 Add a spurious 0x55 byte to the received CEC message, provided
182 Remove the last byte from the received CEC message, provided it
189 As soon as a start bit has been received the CEC adapter will switch
[all …]
/linux/tools/testing/selftests/drivers/net/ocelot/
H A Dpsfp.sh259 local received
276 received=$(isochron_report_num_received "${isochron_dat}")
277 if [ "${received}" = "${expected}" ]; then
281 echo "Expected isochron to receive ${expected} packets but received ${received}"
/linux/drivers/net/wireless/marvell/mwifiex/
H A DREADME108 num_rx_bytes = <number of bytes received from device and sent to kernel>
110 num_rx_pkts = <number of packets received from device and sent to kernel>
141 last_cmd_resp_id = <command id of the last several command responses received from device>
143 last_event = <event id of the last several events received from device>
148 num_evt_deauth = <number of deauthenticated events received from device>
149 num_evt_disassoc = <number of disassociated events received from device>
150 num_evt_link_lost = <number of link lost events received from device>
158 cmd_resp_received = <0/1, no cmd response to process/response received and yet to process>
159 event_received = <0/1, no event to process/event received and yet to process>
/linux/drivers/net/wan/
H A Dhd64572.c229 int received = 0; in sca_rx_done() local
239 while (received < budget) { in sca_rx_done()
264 received++; in sca_rx_done()
274 return received; in sca_rx_done()
320 int received = 0; in sca_poll() local
329 received = sca_rx_done(port, budget); in sca_poll()
331 if (received < budget) { in sca_poll()
332 napi_complete_done(napi, received); in sca_poll()
336 return received; in sca_poll()
/linux/drivers/misc/sgi-xp/
H A Dxp.h268 void (*received) (short, int, void *); member
312 if (xpc_interface.received) in xpc_received()
313 xpc_interface.received(partid, ch_number, payload); in xpc_received()
H A Dxp_main.c87 void (*received) (short, int, void *), in xpc_set_interface()
94 xpc_interface.received = received; in xpc_set_interface()
/linux/Documentation/networking/
H A Diso15765-2.rst61 composing such block (``stmin``). Once this information has been received, the
99 is sent and received by the userspace application using these calls. The address
170 * ``CAN_ISOTP_RX_PADDING``: enable padding for the received frames, using
173 * ``CAN_ISOTP_CHK_PAD_LEN``: check for correct padding length on the received
176 * ``CAN_ISOTP_CHK_PAD_DATA``: check padding bytes on the received frames
184 * ``CAN_ISOTP_FORCE_TXSTMIN``: ignore stmin from received FC; normally
218 * ``rxpad_content``: byte used as padding value for received frames.
303 a 32bit unsigned integer; received Consecutive Frames (CF) which timestamps
325 received or not is decided when the First Frame is received.
379 /* Data can now be received using read(s, ...) and sent using write(s, ...) */
/linux/drivers/staging/nvec/
H A Dnvec.c601 unsigned int received = 0; in nvec_interrupt() local
621 received = readl(nvec->base + I2C_SL_RCVD); in nvec_interrupt()
644 nvec->rx->data[0] = received; in nvec_interrupt()
666 nvec->rx->data[1] = received; in nvec_interrupt()
695 nvec->rx->data[nvec->rx->pos++] = received; in nvec_interrupt()
708 if (received != nvec->i2c_addr) in nvec_interrupt()
711 received, nvec->i2c_addr); in nvec_interrupt()
726 received, in nvec_interrupt()

12345678910>>...20