/linux/drivers/net/ethernet/freescale/dpaa2/ |
H A D | dpmac.h | 129 * @DPMAC_CNT_ING_FRAME_64: counts 64-bytes frames, good or bad. 130 * @DPMAC_CNT_ING_FRAME_127: counts 65- to 127-bytes frames, good or bad. 131 * @DPMAC_CNT_ING_FRAME_255: counts 128- to 255-bytes frames, good or bad. 132 * @DPMAC_CNT_ING_FRAME_511: counts 256- to 511-bytes frames, good or bad. 133 * @DPMAC_CNT_ING_FRAME_1023: counts 512- to 1023-bytes frames, good or bad. 134 * @DPMAC_CNT_ING_FRAME_1518: counts 1024- to 1518-bytes frames, good or bad. 135 * @DPMAC_CNT_ING_FRAME_1519_MAX: counts 1519-bytes frames and larger 138 * @DPMAC_CNT_ING_FRAG: counts frames which are shorter than 64 bytes received 140 * @DPMAC_CNT_ING_JABBER: counts frames longer than the maximum frame length 142 * @DPMAC_CNT_ING_FRAME_DISCARD: counts dropped frames due to internal errors. [all …]
|
H A D | dpsw.h | 46 * to process C-tagged frames 245 * enum dpsw_action - Action selection for special/control frames 292 * separately or in conjunction with PCP to indicate frames 343 * enum dpsw_accepted_frames - Types of frames to accept 345 * priority tagged frames 346 * @DPSW_ADMIT_ONLY_VLAN_TAGGED: The device discards untagged frames or 347 * Priority-Tagged frames received on this interface. 357 * @DPSW_CNT_ING_FRAME: Counts ingress frames 359 * @DPSW_CNT_ING_FLTR_FRAME: Counts filtered ingress frames 361 * @DPSW_CNT_ING_MCAST_FRAME: Counts ingress multicast frames [all …]
|
/linux/drivers/net/ethernet/mellanox/mlx4/ |
H A D | en_port.h | 105 /* Received frames with a length of 64 octets */ 115 /* Received frames with a length of 127 octets */ 125 /* Received frames with a length of 255 octets */ 135 /* Received frames with a length of 511 octets */ 145 /* Received frames with a length of 1023 octets */ 155 /* Received frames with a length of 1518 octets */ 165 /* Received frames with a length of 1522 octets */ 175 /* Received frames with a length of 1548 octets */ 185 /* Received frames with a length of 1548 < octets < MTU */ 195 /* Received frames with a length of MTU< octets and good CRC */ [all …]
|
/linux/tools/testing/selftests/drivers/net/netdevsim/ |
H A D | ethtool-coalesce.sh | 30 ["rx-frames-low"]="rx-frame-low" 31 ["tx-frames-low"]="tx-frame-low" 32 ["rx-frames-high"]="rx-frame-high" 33 ["tx-frames-high"]="tx-frame-high" 35 ["rx-frames"]="rx-frames" 37 ["rx-frames-irq"]="rx-frames-irq" 39 ["tx-frames"]="tx-frames" 41 ["tx-frames-irq"]="tx-frames-irq" 53 ["rx-frames-low"]="" 54 ["tx-frames-low"]="" [all …]
|
/linux/net/dsa/ |
H A D | Kconfig | 25 frames over the CPU port. 30 Say Y or M if you want to enable support for tagging frames for 41 Say Y if you want to enable support for tagging frames for the 48 Say Y if you want to enable support for tagging frames for the 58 Say Y if you want to enable support for tagging frames for the 68 Say Y if you want to enable support for tagging frames for the 75 Say Y or M if you want to enable support for tagging frames 81 Say Y or M if you want to enable support for tagging frames for the 91 Say Y or M if you want to enable support for tagging frames for the 98 Say Y or M if you want to enable support for tagging frames for the [all …]
|
/linux/sound/core/oss/ |
H A D | pcm_plugin.c | 49 static int snd_pcm_plugin_alloc(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in snd_pcm_plugin_alloc() argument 65 size = array3_size(frames, format->channels, width); in snd_pcm_plugin_alloc() 72 if (plugin->buf_frames < frames) { in snd_pcm_plugin_alloc() 75 plugin->buf_frames = frames; in snd_pcm_plugin_alloc() 84 c->frames = frames; in snd_pcm_plugin_alloc() 96 c->frames = frames; in snd_pcm_plugin_alloc() 108 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument 117 frames = plugin->dst_frames(plugin, frames); in snd_pcm_plug_alloc() 118 if ((snd_pcm_sframes_t)frames <= 0) in snd_pcm_plug_alloc() 121 err = snd_pcm_plugin_alloc(plugin, frames); in snd_pcm_plug_alloc() [all …]
|
H A D | route.c | 28 snd_pcm_uframes_t frames, snd_pcm_format_t format) in zero_areas() argument 33 snd_pcm_area_silence(&dvp->area, 0, frames, format); in zero_areas() 41 snd_pcm_uframes_t frames, snd_pcm_format_t format) in copy_area() argument 44 snd_pcm_area_copy(&src_channel->area, 0, &dst_channel->area, 0, frames, format); in copy_area() 50 snd_pcm_uframes_t frames) in route_transfer() argument 58 if (frames == 0) in route_transfer() 60 if (frames > dst_channels[0].frames) in route_transfer() 61 frames = dst_channels[0].frames; in route_transfer() 71 copy_area(src_channels, dvp, frames, format); in route_transfer() 74 return frames; in route_transfer() [all …]
|
H A D | rate.c | 183 static snd_pcm_sframes_t rate_src_frames(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in rate_src_frames() argument 190 if (frames == 0) in rate_src_frames() 194 res = (((frames * data->pitch) + (BITS/2)) >> SHIFT); in rate_src_frames() 196 res = DIV_ROUND_CLOSEST(frames << SHIFT, data->pitch); in rate_src_frames() 199 snd_pcm_sframes_t frames1 = frames, res1 = data->old_dst_frames; in rate_src_frames() 211 data->old_src_frames = frames; in rate_src_frames() 216 static snd_pcm_sframes_t rate_dst_frames(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames) in rate_dst_frames() argument 223 if (frames == 0) in rate_dst_frames() 227 res = DIV_ROUND_CLOSEST(frames << SHIFT, data->pitch); in rate_dst_frames() 229 res = (((frames * data->pitch) + (BITS/2)) >> SHIFT); in rate_dst_frames() [all …]
|
H A D | linear.c | 58 snd_pcm_uframes_t frames) in convert() argument 70 snd_pcm_area_silence(&dst_channels[channel].area, 0, frames, plugin->dst_format.format); in convert() 79 frames1 = frames; in convert() 91 snd_pcm_uframes_t frames) in linear_transfer() argument 95 if (frames == 0) in linear_transfer() 110 if (frames > dst_channels[0].frames) in linear_transfer() 111 frames = dst_channels[0].frames; in linear_transfer() 112 convert(plugin, src_channels, dst_channels, frames); in linear_transfer() 113 return frames; in linear_transfer()
|
H A D | io.c | 40 snd_pcm_uframes_t frames) in io_playback_transfer() argument 47 return pcm_write(plugin->plug, src_channels->area.addr, frames); in io_playback_transfer() 59 return pcm_writev(plugin->plug, bufs, frames); in io_playback_transfer() 66 snd_pcm_uframes_t frames) in io_capture_transfer() argument 73 return pcm_read(plugin->plug, dst_channels->area.addr, frames); in io_capture_transfer() 85 return pcm_readv(plugin->plug, bufs, frames); in io_capture_transfer() 91 snd_pcm_uframes_t frames, in io_src_channels() argument 97 err = snd_pcm_plugin_client_channels(plugin, frames, &v); in io_src_channels() 105 return frames; in io_src_channels()
|
/linux/drivers/net/wireless/mediatek/mt76/ |
H A D | agg-rx.c | 16 mt76_aggr_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames, int idx) in mt76_aggr_release() argument 28 __skb_queue_tail(frames, skb); in mt76_aggr_release() 33 struct sk_buff_head *frames, in mt76_rx_aggr_release_frames() argument 40 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_frames() 45 mt76_rx_aggr_release_head(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_release_head() argument 50 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_head() 56 mt76_rx_aggr_check_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_check_release() argument 65 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() 84 mt76_rx_aggr_release_frames(tid, frames, status->seqno); in mt76_rx_aggr_check_release() 87 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() [all …]
|
/linux/drivers/net/ethernet/freescale/ |
H A D | ucc_geth.h | 58 u32 tx64; /* Total number of frames (including bad 59 frames) transmitted that were exactly of the 63 u32 tx127; /* Total number of frames (including bad 64 frames) transmitted that were between 67 u32 tx255; /* Total number of frames (including bad 68 frames) transmitted that were between 128 70 u32 rx64; /* Total number of frames received including 71 bad frames that were exactly of the mninimal 73 u32 rx127; /* Total number of frames (including bad 74 frames) received that were between MINLength [all …]
|
H A D | ucc_geth_ethtool.c | 37 "tx-64-frames", 38 "tx-65-127-frames", 39 "tx-128-255-frames", 40 "rx-64-frames", 41 "rx-65-127-frames", 42 "rx-128-255-frames", 44 "tx-pause-frames", 45 "tx-multicast-frames", 46 "tx-broadcast-frames", 47 "rx-frames", [all …]
|
/linux/drivers/net/ethernet/brocade/bna/ |
H A D | bfa_defs_cna.h | 19 u64 tx_frames; /*!< Tx frames */ 26 u64 rx_frames; /*!< Rx frames */ 33 u64 invalid_crcs; /*!< Rx CRC err frames */ 34 u64 invalid_crc_gd_eof; /*!< Rx CRC err good EOF frames */ 35 u64 undersized_frm; /*!< Rx undersized frames */ 36 u64 oversized_frm; /*!< Rx oversized frames */ 37 u64 bad_eof_frm; /*!< Rx frames with bad EOF */ 38 u64 error_frames; /*!< Errored frames */ 39 u64 dropped_frames; /*!< Dropped frames */ 47 u64 bbsc_frames_lost; /*!< Credit Recovery-Frames Lost */ [all …]
|
/linux/Documentation/networking/device_drivers/can/freescale/ |
H A D | flexcan.rst | 10 On/off RTR frames reception 19 and i.MX53 SOCs) only receive RTR frames if the controller is 22 The RX FIFO mode uses a hardware FIFO with a depth of 6 CAN frames, 24 CAN frames. With the help of the bigger buffer, the mailbox mode 27 As reception of RTR frames is part of the CAN standard, all flexcan 30 With the "rx-rtr" private flag the ability to receive RTR frames can 35 Receive RTR frames. (default) 37 The CAN controller can and will receive RTR frames. 39 On some IP cores the controller cannot receive RTR frames in the 45 Waive ability to receive RTR frames. (not supported on all IP cores) [all …]
|
/linux/drivers/net/ethernet/chelsio/cxgb/ |
H A D | vsc7326_reg.h | 151 #define REG_TX_ABORT_AGE CRA(0x1,0xa,0x14) /* Aged Tx frames discarded */ 152 #define REG_TX_ABORT_SHORT CRA(0x1,0xa,0x15) /* Short Tx frames discarded */ 153 #define REG_TX_ABORT_TAXI CRA(0x1,0xa,0x16) /* Taxi error frames discarded */ 202 RxSymbolCarrier = 0x01, // Frames w/ symbol errors 203 RxPause = 0x02, // # pause frames received 204 RxUnsupOpcode = 0x03, // # control frames with unsupported opcode 205 RxOkBytes = 0x04, // # octets in good frames 206 RxBadBytes = 0x05, // # octets in bad frames 207 RxUnicast = 0x06, // # good unicast frames 208 RxMulticast = 0x07, // # good multicast frames [all …]
|
/linux/Documentation/networking/device_drivers/ethernet/meta/ |
H A D | fbnic.rst | 43 L2-L4 headers (or full frames if frame is not header-data split). 51 rings for normal traffic from the stack and the second one for XDP frames. 92 …- ``rxb_integrity_err[i]``: frames enqueued with integrity errors (e.g., multi-bit ECC errors) on … 93 - ``rxb_mac_err[i]``: frames enqueued with MAC end-of-frame errors (e.g., bad FCS) on RXB input i 94 - ``rxb_parser_err[i]``: frames experienced RPC parser errors 95 …- ``rxb_frm_err[i]``: frames experienced signaling errors (e.g., missing end-of-packet/start-of-pa… 96 - ``rxb_drbo[i]_frames``: frames received at RXB input i 103 - ``rxb_fifo[i]_dropped_frames``: frames dropped on RXB pool i 110 - ``rxb_intf[i]_frames``: frames sent to the output i 112 - ``rxb_pbuf[i]_frames``: frames sent to output i from the perspective of internal packet buffer [all …]
|
/linux/drivers/net/wireless/intel/iwlwifi/fw/api/ |
H A D | txq.h | 14 * @IWL_MVM_DQA_AUX_QUEUE: a queue reserved for aux frames 15 * @IWL_MVM_DQA_P2P_DEVICE_QUEUE: a queue reserved for P2P device frames 19 * @IWL_MVM_DQA_GCAST_QUEUE: a queue reserved for P2P GO/SoftAP GCAST frames 22 * @IWL_MVM_DQA_MIN_MGMT_QUEUE: first TXQ in pool for MGMT and non-QOS frames. 24 * MGMT frames are frames that return true on ieee80211_is_mgmt() 25 * @IWL_MVM_DQA_MAX_MGMT_QUEUE: last TXQ in pool for MGMT frames 28 * @IWL_MVM_DQA_MIN_DATA_QUEUE: first TXQ in pool for DATA frames. 29 * DATA frames are intended for !ieee80211_is_mgmt() frames, but if 30 * the MGMT TXQ pool is exhausted, mgmt frames can be sent on DATA queues 32 * @IWL_MVM_DQA_MAX_DATA_QUEUE: last TXQ in pool for DATA frames
|
/linux/drivers/media/usb/pwc/ |
H A D | pwc-ctrl.c | 142 int frames, int *compression, int send_to_cam) in set_video_mode_Nala() argument 168 if (frames < 4) in set_video_mode_Nala() 169 frames = 4; in set_video_mode_Nala() 170 else if (size > PSZ_QCIF && frames > 15) in set_video_mode_Nala() 171 frames = 15; in set_video_mode_Nala() 172 else if (frames > 25) in set_video_mode_Nala() 173 frames = 25; in set_video_mode_Nala() 174 frames = frames2frames[frames]; in set_video_mode_Nala() 175 fps = frames2table[frames]; in set_video_mode_Nala() 191 pdev->vframes = frames; in set_video_mode_Nala() [all …]
|
/linux/drivers/net/ethernet/altera/ |
H A D | altera_tse.h | 222 /* Number of frames transmitted without error including pause frames */ 224 /* Number of frames received without error including pause frames */ 226 /* Number of frames received with a CRC error */ 230 /* Sum of payload and padding octets of frames transmitted without 234 /* Sum of payload and padding octets of frames received without error */ 239 /* Number of transmitted pause frames */ 241 /* Number of Received pause frames */ 246 /* Number of frames received with error */ 248 /* Number of frames transmitted with error */ 250 /* Number of valid received unicast frames */ [all …]
|
/linux/net/mac80211/ |
H A D | mesh_ps.c | 189 * is handled, for group-addressed and management frames it is not used 272 mps_dbg(sta->sdata, "start PS buffering frames towards %pM\n", in ieee80211_mps_sta_status_update() 348 * individually addressed QoS Data/Null frames contain in ieee80211_mps_rx_h_sta_process() 353 /* check for mesh Peer Service Period trigger frames */ in ieee80211_mps_rx_h_sta_process() 412 * @frames: the frame list to append to 419 struct sk_buff_head *frames) in mpsp_qos_null_append() argument 422 struct sk_buff *new_skb, *skb = skb_peek_tail(frames); in mpsp_qos_null_append() 437 * make sure it cannot pass other frames when releasing multiple ACs. in mpsp_qos_null_append() 447 __skb_queue_tail(frames, new_skb); in mpsp_qos_null_append() 451 * mps_frame_deliver - transmit frames during mesh powersave [all …]
|
/linux/Documentation/networking/ |
H A D | can.rst | 31 receive raw CAN frames, directly to/from the controller hardware. 32 Queueing of frames and higher-level transport protocols like ISO-TP 45 network layer as a network device, so that CAN frames from the 54 frames on different or the same CAN IDs. Several sockets listening on 55 the same interface for frames with the same CAN ID are all passed the 56 same received matching CAN frames. An application wishing to 60 CAN-IDs, frames, etc. 93 CAN frames between them, (sophisticated) queueing of CAN frames, and 142 Local Loopback of Sent Frames 160 some kind of local loopback of the sent CAN frames on the appropriate [all …]
|
/linux/drivers/net/wireless/ath/ath9k/ |
H A D | common-debug.h | 21 * @rx_pkts_all: No. of total frames received, including ones that 25 * @crc_err: No. of frames with incorrect CRC value 26 * @decrypt_crc_err: No. of frames whose CRC check failed after 28 * @phy_err: No. of frames whose reception failed because the PHY 30 * @mic_err: No. of frames with incorrect TKIP MIC verification failure 35 * @rx_len_err: No. of frames discarded due to bad length. 36 * @rx_oom_err: No. of frames dropped due to OOM issues. 37 * @rx_rate_err: No. of frames dropped due to rate errors. 38 * @rx_too_many_frags_err: Frames dropped due to too-many-frags received.
|
/linux/drivers/xen/ |
H A D | mem-reservation.c | 31 xen_pfn_t *frames) in __xenmem_reservation_va_mapping_update() argument 48 set_phys_to_machine(pfn, frames[i]); in __xenmem_reservation_va_mapping_update() 52 mfn_pte(frames[i], PAGE_KERNEL), 0); in __xenmem_reservation_va_mapping_update() 85 /* @frames is an array of PFNs */ 86 int xenmem_reservation_increase(int count, xen_pfn_t *frames) in xenmem_reservation_increase() argument 95 set_xen_guest_handle(reservation.extent_start, frames); in xenmem_reservation_increase() 101 /* @frames is an array of GFNs */ 102 int xenmem_reservation_decrease(int count, xen_pfn_t *frames) in xenmem_reservation_decrease() argument 111 set_xen_guest_handle(reservation.extent_start, frames); in xenmem_reservation_decrease()
|
/linux/include/net/libeth/ |
H A D | types.h | 13 * @packets: received frames counter 14 * @bytes: sum of bytes of received frames above 15 * @fragments: sum of fragments of received S/G frames 16 * @hsplit: number of frames the device performed the header split for 33 * @packets: completed frames counter 34 * @bytes: sum of bytes of completed frames above 50 * @packets: completed frames counter 51 * @bytes: sum of bytes of completed frames above 52 * @fragments: sum of fragments of completed S/G frames
|