Home
last modified time | relevance | path

Searched full:frames (Results 1 – 25 of 2073) sorted by relevance

12345678910>>...83

/linux-6.12.1/drivers/net/ethernet/freescale/dpaa2/
Ddpmac.h129 * @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 …]
Ddpsw.h46 * 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-6.12.1/drivers/net/ethernet/mellanox/mlx4/
Den_port.h105 /* 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-6.12.1/tools/testing/selftests/drivers/net/netdevsim/
Dethtool-coalesce.sh30 ["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-6.12.1/net/dsa/
DKconfig25 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
56 Say Y if you want to enable support for tagging frames for the
63 Say Y or M if you want to enable support for tagging frames
69 Say Y or M if you want to enable support for tagging frames for the
79 Say Y or M if you want to enable support for tagging frames for the
86 Say Y or M if you want to enable support for tagging frames for the
92 Say Y or M if you want to enable support for tagging frames for
[all …]
/linux-6.12.1/sound/core/oss/
Dpcm_plugin.c49 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 …]
Droute.c28 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 …]
Drate.c183 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 …]
Dlinear.c58 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()
/linux-6.12.1/drivers/net/wireless/mediatek/mt76/
Dagg-rx.c16 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-6.12.1/drivers/net/ethernet/freescale/
Ducc_geth.h57 u32 tx64; /* Total number of frames (including bad
58 frames) transmitted that were exactly of the
62 u32 tx127; /* Total number of frames (including bad
63 frames) transmitted that were between
66 u32 tx255; /* Total number of frames (including bad
67 frames) transmitted that were between 128
69 u32 rx64; /* Total number of frames received including
70 bad frames that were exactly of the mninimal
72 u32 rx127; /* Total number of frames (including bad
73 frames) received that were between MINLength
[all …]
Ducc_geth_ethtool.c37 "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-6.12.1/drivers/net/ethernet/brocade/bna/
Dbfa_defs_cna.h19 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-6.12.1/Documentation/networking/device_drivers/can/freescale/
Dflexcan.rst10 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-6.12.1/drivers/net/ethernet/chelsio/cxgb/
Dvsc7326_reg.h151 #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-6.12.1/drivers/net/wireless/intel/iwlwifi/fw/api/
Dtxq.h14 * @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-6.12.1/drivers/media/usb/pwc/
Dpwc-ctrl.c142 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-6.12.1/drivers/net/ethernet/altera/
Daltera_tse.h222 /* 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-6.12.1/net/mac80211/
Dmesh_ps.c189 * 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-6.12.1/Documentation/networking/
Dcan.rst31 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-6.12.1/net/ncsi/
Dinternal.h161 u32 hnc_rx_pause_xon; /* Rx pause XON frames */
162 u32 hnc_rx_pause_xoff; /* Rx XOFF frames */
163 u32 hnc_tx_pause_xon; /* Tx XON frames */
164 u32 hnc_tx_pause_xoff; /* Tx XOFF frames */
165 u32 hnc_tx_s_collision; /* Single collision frames */
166 u32 hnc_tx_m_collision; /* Multiple collision frames */
167 u32 hnc_l_collision; /* Late collision frames */
168 u32 hnc_e_collision; /* Excessive collision frames */
169 u32 hnc_rx_ctl_frames; /* Rx control frames */
170 u32 hnc_rx_64_frames; /* Rx 64-bytes frames */
[all …]
Dncsi-pkt.h270 __be32 rx_pause_xon; /* Rx pause XON frames */
271 __be32 rx_pause_xoff; /* Rx XOFF frames */
272 __be32 tx_pause_xon; /* Tx XON frames */
273 __be32 tx_pause_xoff; /* Tx XOFF frames */
274 __be32 tx_s_collision; /* Single collision frames */
275 __be32 tx_m_collision; /* Multiple collision frames */
276 __be32 l_collision; /* Late collision frames */
277 __be32 e_collision; /* Excessive collision frames */
278 __be32 rx_ctl_frames; /* Rx control frames */
279 __be32 rx_64_frames; /* Rx 64-bytes frames */
[all …]
/linux-6.12.1/drivers/net/wireless/ath/ath9k/
Dcommon-debug.h21 * @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-6.12.1/drivers/xen/
Dmem-reservation.c31 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-6.12.1/drivers/net/wireless/ti/wl1251/
Dacx.h45 /* values of frames seq numbers */
112 #define DEFAULT_RXQ_TYPE 0x07 /* All frames, Data/Ctrl/Mgmt */
197 * frames not to us with FCS error will not generate an interrupt.
199 * probe request, and probe response frames with an SSID that does
202 * When clear, the WiLink receives frames with any SSID.
204 * broadcast frames. When clear, the WiLink receives all received
205 * broadcast frames.
207 * 5 BSSID Filter Enable - When set, the WiLink discards any frames
210 * When clear, the WiLink receives frames from any BSSID.
211 * 4 MAC Addr Filter - When set, the WiLink discards any frames
[all …]

12345678910>>...83