| /f-stack/freebsd/net80211/ |
| H A D | ieee80211_ht.h | 88 (((tap)->txa_flags & \ 110 tap->txa_lastsample = ticks; in ieee80211_txampdu_init_pps() 111 tap->txa_avgpps = 0; in ieee80211_txampdu_init_pps() 119 tap->txa_avgpps = ((tap->txa_avgpps << 2) - in ieee80211_txampdu_update_pps() 120 tap->txa_avgpps + tap->txa_pkts) >> 2; in ieee80211_txampdu_update_pps() 134 tap->txa_pkts = 0; in ieee80211_txampdu_count_packet() 139 tap->txa_lastsample += hz; in ieee80211_txampdu_count_packet() 141 tap->txa_pkts++; in ieee80211_txampdu_count_packet() 155 tap->txa_pkts = 0; in ieee80211_txampdu_getpps() 160 tap->txa_lastsample += hz; in ieee80211_txampdu_getpps() [all …]
|
| H A D | ieee80211_ht.c | 2200 tap->txa_ni, in ampdu_tx_stop() 2669 tap->txa_avgpps, tap->txa_pkts, tap->txa_attempts); in ieee80211_ampdu_enable() 2722 __func__, tap->txa_tid, TID_TO_WME_AC(tap->txa_tid)); in ieee80211_ampdu_request() 2789 tap->txa_tid, tap->txa_flags, tap->txa_attempts); in bar_timeout() 2811 if (ieee80211_send_bar(ni, tap, tap->txa_seqpending) != 0) { in bar_timeout() 2834 tap->txa_ni, in bar_start_timer() 2844 tap->txa_ni, in bar_stop_timer() 2857 __func__, tap->txa_tid, tap->txa_flags, in bar_tx_complete() 2886 IEEE80211_SEQ_ADD(tap->txa_start, tap->txa_wnd-1), in ieee80211_bar_response() 2887 tap->txa_qframes, tap->txa_seqpending, in ieee80211_bar_response() [all …]
|
| H A D | ieee80211_ddb.c | 195 _db_show_txampdu(const char *sep, int ix, const struct ieee80211_tx_ampdu *tap) in _db_show_txampdu() argument 198 sep, ix, tap, tap->txa_flags, IEEE80211_AGGR_BITS, in _db_show_txampdu() 199 ieee80211_wme_acnames[TID_TO_WME_AC(tap->txa_tid)]); in _db_show_txampdu() 201 sep, tap->txa_token, tap->txa_lastsample, tap->txa_pkts, in _db_show_txampdu() 202 tap->txa_avgpps, tap->txa_qbytes, tap->txa_qframes); in _db_show_txampdu() 204 sep, tap->txa_start, tap->txa_seqpending, tap->txa_wnd, in _db_show_txampdu() 205 tap->txa_attempts, tap->txa_nextrequest); in _db_show_txampdu()
|
| H A D | ieee80211_superg.c | 776 struct ieee80211_tx_ampdu *tap; in ieee80211_ff_check() local 795 tap = &ni->ni_tx_ampdu[WME_AC_TO_TID(pri)]; in ieee80211_ff_check() 802 ieee80211_txampdu_count_packet(tap); in ieee80211_ff_check() 820 ieee80211_txampdu_getpps(tap) < ieee80211_ffppsmin) { in ieee80211_ff_check()
|
| H A D | ieee80211_output.c | 217 struct ieee80211_tx_ampdu *tap = &ni->ni_tx_ampdu[tid]; in ieee80211_vap_pkt_send_dest() local 219 ieee80211_txampdu_count_packet(tap); in ieee80211_vap_pkt_send_dest() 220 if (IEEE80211_AMPDU_RUNNING(tap)) { in ieee80211_vap_pkt_send_dest() 227 } else if (!IEEE80211_AMPDU_REQUESTED(tap) && in ieee80211_vap_pkt_send_dest() 228 ic->ic_ampdu_enable(ni, tap)) { in ieee80211_vap_pkt_send_dest() 232 ieee80211_ampdu_request(ni, tap); in ieee80211_vap_pkt_send_dest() 249 no_ampdu = (! IEEE80211_AMPDU_RUNNING(tap) in ieee80211_vap_pkt_send_dest() 250 || (IEEE80211_AMPDU_NACKED(tap))); in ieee80211_vap_pkt_send_dest() 251 do_ampdu_amsdu = IEEE80211_AMPDU_RUNNING_AMSDU(tap); in ieee80211_vap_pkt_send_dest() 889 struct ieee80211_tx_ampdu *tap; in ieee80211_send_setup() local [all …]
|
| /f-stack/dpdk/examples/ip_pipeline/ |
| H A D | tap.c | 34 struct tap * 37 struct tap *tap; in tap_find() local 44 return tap; in tap_find() 51 struct tap * 59 struct tap * 62 struct tap *tap; in tap_create() local 87 tap = calloc(1, sizeof(struct tap)); in tap_create() 88 if (tap == NULL) { in tap_create() 93 strlcpy(tap->name, name, sizeof(tap->name)); in tap_create() 94 tap->fd = fd; in tap_create() [all …]
|
| H A D | tap.h | 12 struct tap { struct 13 TAILQ_ENTRY(tap) node; 18 TAILQ_HEAD(tap_list, tap); argument 23 struct tap * 26 struct tap *
|
| H A D | pipeline.c | 250 struct tap *tap; in pipeline_port_in_create() local 253 tap = tap_find(params->dev_name); in pipeline_port_in_create() 254 mempool = mempool_find(params->tap.mempool_name); in pipeline_port_in_create() 255 if ((tap == NULL) || (mempool == NULL)) in pipeline_port_in_create() 258 pp.fd.fd = tap->fd; in pipeline_port_in_create() 260 pp.fd.mtu = params->tap.mtu; in pipeline_port_in_create() 517 struct tap *tap; in pipeline_port_out_create() local 519 tap = tap_find(params->dev_name); in pipeline_port_out_create() 520 if (tap == NULL) in pipeline_port_out_create() 523 pp.fd.fd = tap->fd; in pipeline_port_out_create() [all …]
|
| H A D | meson.build | 27 'tap.c',
|
| H A D | Makefile | 18 SRCS-y += tap.c
|
| /f-stack/dpdk/drivers/net/softnic/ |
| H A D | rte_eth_softnic_tap.c | 36 struct softnic_tap *tap; in softnic_tap_free() local 38 tap = TAILQ_FIRST(&p->tap_list); in softnic_tap_free() 39 if (tap == NULL) in softnic_tap_free() 43 free(tap); in softnic_tap_free() 51 struct softnic_tap *tap; in softnic_tap_find() local 58 return tap; in softnic_tap_find() 78 struct softnic_tap *tap; in softnic_tap_create() local 104 if (tap == NULL) { in softnic_tap_create() 109 strlcpy(tap->name, name, sizeof(tap->name)); in softnic_tap_create() 110 tap->fd = fd; in softnic_tap_create() [all …]
|
| H A D | rte_eth_softnic_pipeline.c | 325 struct softnic_tap *tap; in softnic_pipeline_port_in_create() local 328 tap = softnic_tap_find(softnic, params->dev_name); in softnic_pipeline_port_in_create() 329 mempool = softnic_mempool_find(softnic, params->tap.mempool_name); in softnic_pipeline_port_in_create() 330 if (tap == NULL || mempool == NULL) in softnic_pipeline_port_in_create() 333 pp.fd.fd = tap->fd; in softnic_pipeline_port_in_create() 335 pp.fd.mtu = params->tap.mtu; in softnic_pipeline_port_in_create() 566 struct softnic_tap *tap; in softnic_pipeline_port_out_create() local 568 tap = softnic_tap_find(softnic, params->dev_name); in softnic_pipeline_port_out_create() 569 if (tap == NULL) in softnic_pipeline_port_out_create() 572 pp.fd.fd = tap->fd; in softnic_pipeline_port_out_create() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/spi/ |
| H A D | nvidia,tegra114-spi.txt | 27 - nvidia,tx-clk-tap-delay: Delays the clock going out to the external device 28 with this tap value. This property is used to tune the outgoing data from 31 to corresponding slave devices. Valid tap values are from 0 thru 63. 32 - nvidia,rx-clk-tap-delay: Delays the clock coming in from the external device 33 with this tap value. This property is used to adjust the Tegra SPI master 36 to corresponding slave devices. Valid tap values are from 0 thru 63. 56 nvidia,rx-clk-tap-delay = <0>; 57 nvidia,tx-clk-tap-delay = <16>;
|
| /f-stack/dpdk/examples/ip_pipeline/examples/ |
| H A D | tap.cli | 34 tap TAP0 35 tap TAP1 42 pipeline PIPELINE0 port in bsz 32 tap TAP1 mempool MEMPOOL0 mtu 1500 44 pipeline PIPELINE0 port in bsz 32 tap TAP0 mempool MEMPOOL0 mtu 1500 46 pipeline PIPELINE0 port out bsz 32 tap TAP0 48 pipeline PIPELINE0 port out bsz 32 tap TAP1
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/amd/ |
| H A D | amd-seattle-xgbe-b.dtsi | 52 amd,serdes-dfe-tap-config = <3>, <3>, <3>; 53 amd,serdes-dfe-tap-enable = <0>, <0>, <7>; 78 amd,serdes-dfe-tap-config = <3>, <3>, <3>; 79 amd,serdes-dfe-tap-enable = <0>, <0>, <7>;
|
| /f-stack/freebsd/contrib/device-tree/Bindings/net/ |
| H A D | amd-xgbe.txt | 49 - amd,serdes-dfe-tap-config: DFE taps available to run 50 - amd,serdes-dfe-tap-enable: DFE taps to enable 74 amd,serdes-dfe-tap-config = <3>, <3>, <1>; 75 amd,serdes-dfe-tap-enable = <0>, <0>, <127>;
|
| /f-stack/dpdk/doc/guides/nics/ |
| H A D | e1000em.rst | 107 -net tap,vlan=1,ifname=tapvm01,script=no,downscript=no 109 -net tap,vlan=2,ifname=tapvm02,script=no,downscript=no 125 tapvm01: tap 126 tapvm02: tap
|
| H A D | index.rst | 58 tap
|
| H A D | tap.rst | 14 create a number of tap devices in the host accessed via ``ifconfig -a`` or 51 If a ``remote`` is set, the tap MAC address will be set to match the remote one 53 will be redirected to the tap. If the tap is in promiscuous mode, then all 59 rte_flow rules on the tap PMD to capture specific traffic (see next section for 100 The tap PMD supports major flow API pattern items and actions, when running on
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | vdev_trim.c | 1277 trim_args_t *tap; in vdev_autotrim_thread() local 1281 tap = kmem_zalloc(sizeof (trim_args_t) * in vdev_autotrim_thread() 1283 tap[0].trim_vdev = vd; in vdev_autotrim_thread() 1285 tap = kmem_zalloc(sizeof (trim_args_t) * in vdev_autotrim_thread() 1289 tap[c].trim_vdev = vd->vdev_child[c]; in vdev_autotrim_thread() 1294 trim_args_t *ta = &tap[c]; in vdev_autotrim_thread() 1336 trim_args_t *ta = &tap[c]; in vdev_autotrim_thread() 1368 VERIFY3P(tap[0].trim_msp, ==, msp); in vdev_autotrim_thread() 1370 vdev_trim_range_verify, &tap[0]); in vdev_autotrim_thread() 1381 trim_args_t *ta = &tap[c]; in vdev_autotrim_thread() [all …]
|
| /f-stack/dpdk/doc/guides/nics/features/ |
| H A D | tap.ini | 2 ; Supported features of the 'tap' driver.
|
| /f-stack/dpdk/drivers/net/ |
| H A D | meson.build | 51 'tap',
|
| /f-stack/dpdk/doc/guides/howto/ |
| H A D | virtio_user_as_exceptional_path.rst | 102 #. Configure IP address and start tap: 110 The tap device will be named tap0, tap1, etc, by kernel.
|
| /f-stack/freebsd/contrib/device-tree/Bindings/mmc/ |
| H A D | nvidia,tegra20-sdhci.txt | 82 - nvidia,default-tap : Specify the default inbound sampling clock 97 Notes on tap and trim values:
|
| H A D | sdhci-am654.txt | 21 Output tap delay for each speed mode:
|