├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README.zh_cn.md ├── cmd ├── Makefile └── main.c ├── core ├── Makefile ├── lb_arp.c ├── lb_arp.h ├── lb_clock.h ├── lb_config.c ├── lb_config.h ├── lb_conn.c ├── lb_conn.h ├── lb_device.c ├── lb_device.h ├── lb_format.h ├── lb_md5.h ├── lb_parser.c ├── lb_parser.h ├── lb_proto.c ├── lb_proto.h ├── lb_proto_icmp.c ├── lb_proto_tcp.c ├── lb_proto_udp.c ├── lb_scheduler.c ├── lb_scheduler.h ├── lb_service.c ├── lb_service.h ├── lb_synproxy.c ├── lb_synproxy.h ├── lb_tcp_secret_seq.c ├── lb_tcp_secret_seq.h ├── lb_toa.c ├── lb_toa.h └── main.c ├── doc ├── 1.png ├── 2.png └── command.md ├── dpdk ├── .gitattributes ├── .gitignore ├── GNUmakefile ├── MAINTAINERS ├── Makefile ├── README ├── app │ ├── Makefile │ ├── meson.build │ ├── pdump │ │ ├── Makefile │ │ └── main.c │ ├── proc_info │ │ ├── Makefile │ │ └── main.c │ ├── test-bbdev │ │ ├── Makefile │ │ ├── main.c │ │ ├── main.h │ │ ├── test-bbdev.py │ │ ├── test_bbdev.c │ │ ├── test_bbdev_perf.c │ │ ├── test_bbdev_vector.c │ │ ├── test_bbdev_vector.h │ │ └── test_vectors │ │ │ ├── bbdev_vector_null.data │ │ │ ├── bbdev_vector_td_default.data │ │ │ └── bbdev_vector_te_default.data │ ├── test-crypto-perf │ │ ├── Makefile │ │ ├── cperf.h │ │ ├── cperf_ops.c │ │ ├── cperf_ops.h │ │ ├── cperf_options.h │ │ ├── cperf_options_parsing.c │ │ ├── cperf_test_common.c │ │ ├── cperf_test_common.h │ │ ├── cperf_test_latency.c │ │ ├── cperf_test_latency.h │ │ ├── cperf_test_pmd_cyclecount.c │ │ ├── cperf_test_pmd_cyclecount.h │ │ ├── cperf_test_throughput.c │ │ ├── cperf_test_throughput.h │ │ ├── cperf_test_vector_parsing.c │ │ ├── cperf_test_vector_parsing.h │ │ ├── cperf_test_vectors.c │ │ ├── cperf_test_vectors.h │ │ ├── cperf_test_verify.c │ │ ├── cperf_test_verify.h │ │ ├── data │ │ │ ├── aes_cbc_128_sha.data │ │ │ ├── aes_cbc_192_sha.data │ │ │ └── aes_cbc_256_sha.data │ │ └── main.c │ ├── test-eventdev │ │ ├── Makefile │ │ ├── evt_common.h │ │ ├── evt_main.c │ │ ├── evt_options.c │ │ ├── evt_options.h │ │ ├── evt_test.c │ │ ├── evt_test.h │ │ ├── meson.build │ │ ├── parser.c │ │ ├── parser.h │ │ ├── test_order_atq.c │ │ ├── test_order_common.c │ │ ├── test_order_common.h │ │ ├── test_order_queue.c │ │ ├── test_perf_atq.c │ │ ├── test_perf_common.c │ │ ├── test_perf_common.h │ │ ├── test_perf_queue.c │ │ ├── test_pipeline_atq.c │ │ ├── test_pipeline_common.c │ │ ├── test_pipeline_common.h │ │ └── test_pipeline_queue.c │ └── test-pmd │ │ ├── Makefile │ │ ├── cmdline.c │ │ ├── cmdline_flow.c │ │ ├── cmdline_mtr.c │ │ ├── cmdline_mtr.h │ │ ├── cmdline_tm.c │ │ ├── cmdline_tm.h │ │ ├── config.c │ │ ├── csumonly.c │ │ ├── flowgen.c │ │ ├── icmpecho.c │ │ ├── ieee1588fwd.c │ │ ├── iofwd.c │ │ ├── macfwd.c │ │ ├── macswap.c │ │ ├── meson.build │ │ ├── parameters.c │ │ ├── rxonly.c │ │ ├── testpmd.c │ │ ├── testpmd.h │ │ ├── tm.c │ │ └── txonly.c ├── buildtools │ ├── Makefile │ ├── auto-config-h.sh │ ├── check-experimental-syms.sh │ ├── gen-build-mk.sh │ ├── gen-config-h.sh │ ├── gen-pmdinfo-cfile.sh │ ├── meson.build │ ├── pmdinfogen │ │ ├── Makefile │ │ ├── meson.build │ │ ├── pmdinfogen.c │ │ └── pmdinfogen.h │ ├── relpath.sh │ └── symlink-drivers-solibs.sh ├── config │ ├── arm │ │ ├── arm64_armv8_linuxapp_gcc │ │ ├── arm64_thunderx_linuxapp_gcc │ │ ├── armv8_machine.py │ │ └── meson.build │ ├── common_armv8a_linuxapp │ ├── common_base │ ├── common_bsdapp │ ├── common_linuxapp │ ├── defconfig_arm-armv7a-linuxapp-gcc │ ├── defconfig_arm64-armv8a-linuxapp-clang │ ├── defconfig_arm64-armv8a-linuxapp-gcc │ ├── defconfig_arm64-dpaa-linuxapp-gcc │ ├── defconfig_arm64-dpaa2-linuxapp-gcc │ ├── defconfig_arm64-thunderx-linuxapp-gcc │ ├── defconfig_arm64-xgene1-linuxapp-gcc │ ├── defconfig_i686-native-linuxapp-gcc │ ├── defconfig_i686-native-linuxapp-icc │ ├── defconfig_ppc_64-power8-linuxapp-gcc │ ├── defconfig_x86_64-native-bsdapp-clang │ ├── defconfig_x86_64-native-bsdapp-gcc │ ├── defconfig_x86_64-native-linuxapp-clang │ ├── defconfig_x86_64-native-linuxapp-gcc │ ├── defconfig_x86_64-native-linuxapp-icc │ ├── defconfig_x86_x32-native-linuxapp-gcc │ ├── meson.build │ ├── rte_config.h │ └── x86 │ │ └── meson.build ├── devtools │ ├── build-tags.sh │ ├── check-dup-includes.sh │ ├── check-git-log.sh │ ├── check-includes.sh │ ├── check-maintainers.sh │ ├── checkpatches.sh │ ├── cocci.sh │ ├── cocci │ │ ├── mtod-offset.cocci │ │ └── strlcpy.cocci │ ├── get-maintainer.sh │ ├── git-log-fixes.sh │ ├── load-devel-config │ ├── test-build.sh │ ├── test-null.sh │ └── validate-abi.sh ├── doc │ ├── api │ │ ├── doxy-api-index.md │ │ ├── doxy-api.conf │ │ └── doxy-html-custom.sh │ ├── build-sdk-meson.txt │ ├── build-sdk-quick.txt │ ├── guides │ │ ├── bbdevs │ │ │ ├── index.rst │ │ │ ├── null.rst │ │ │ └── turbo_sw.rst │ │ ├── conf.py │ │ ├── contributing │ │ │ ├── cheatsheet.rst │ │ │ ├── coding_style.rst │ │ │ ├── design.rst │ │ │ ├── documentation.rst │ │ │ ├── img │ │ │ │ └── patch_cheatsheet.svg │ │ │ ├── index.rst │ │ │ ├── patches.rst │ │ │ ├── stable.rst │ │ │ └── versioning.rst │ │ ├── cryptodevs │ │ │ ├── aesni_gcm.rst │ │ │ ├── aesni_mb.rst │ │ │ ├── armv8.rst │ │ │ ├── dpaa2_sec.rst │ │ │ ├── dpaa_sec.rst │ │ │ ├── features │ │ │ │ ├── aesni_gcm.ini │ │ │ │ ├── aesni_mb.ini │ │ │ │ ├── armv8.ini │ │ │ │ ├── default.ini │ │ │ │ ├── dpaa2_sec.ini │ │ │ │ ├── dpaa_sec.ini │ │ │ │ ├── kasumi.ini │ │ │ │ ├── mrvl.ini │ │ │ │ ├── null.ini │ │ │ │ ├── openssl.ini │ │ │ │ ├── qat.ini │ │ │ │ ├── snow3g.ini │ │ │ │ └── zuc.ini │ │ │ ├── img │ │ │ │ └── scheduler-overview.svg │ │ │ ├── index.rst │ │ │ ├── kasumi.rst │ │ │ ├── mrvl.rst │ │ │ ├── null.rst │ │ │ ├── openssl.rst │ │ │ ├── overview.rst │ │ │ ├── qat.rst │ │ │ ├── scheduler.rst │ │ │ ├── snow3g.rst │ │ │ └── zuc.rst │ │ ├── custom.css │ │ ├── eventdevs │ │ │ ├── dpaa.rst │ │ │ ├── dpaa2.rst │ │ │ ├── index.rst │ │ │ ├── octeontx.rst │ │ │ ├── opdl.rst │ │ │ └── sw.rst │ │ ├── faq │ │ │ ├── faq.rst │ │ │ └── index.rst │ │ ├── freebsd_gsg │ │ │ ├── build_dpdk.rst │ │ │ ├── build_sample_apps.rst │ │ │ ├── index.rst │ │ │ ├── install_from_ports.rst │ │ │ └── intro.rst │ │ ├── howto │ │ │ ├── flow_bifurcation.rst │ │ │ ├── img │ │ │ │ ├── flow_bifurcation_overview.svg │ │ │ │ ├── ixgbe_bifu_queue_idx.svg │ │ │ │ ├── lm_bond_virtio_sriov.svg │ │ │ │ ├── lm_vhost_user.svg │ │ │ │ ├── packet_capture_framework.svg │ │ │ │ ├── pvp_2nics.svg │ │ │ │ ├── use_models_for_running_dpdk_in_containers.svg │ │ │ │ ├── vf_daemon_overview.svg │ │ │ │ ├── virtio_user_as_exceptional_path.svg │ │ │ │ └── virtio_user_for_container_networking.svg │ │ │ ├── index.rst │ │ │ ├── lm_bond_virtio_sriov.rst │ │ │ ├── lm_virtio_vhost_user.rst │ │ │ ├── packet_capture_framework.rst │ │ │ ├── pvp_reference_benchmark.rst │ │ │ ├── rte_flow.rst │ │ │ ├── vfd.rst │ │ │ ├── virtio_user_as_exceptional_path.rst │ │ │ └── virtio_user_for_container_networking.rst │ │ ├── index.rst │ │ ├── linux_gsg │ │ │ ├── build_dpdk.rst │ │ │ ├── build_sample_apps.rst │ │ │ ├── enable_func.rst │ │ │ ├── index.rst │ │ │ ├── intro.rst │ │ │ ├── linux_drivers.rst │ │ │ ├── nic_perf_intel_platform.rst │ │ │ ├── quick_start.rst │ │ │ └── sys_reqs.rst │ │ ├── mempool │ │ │ ├── index.rst │ │ │ └── octeontx.rst │ │ ├── nics │ │ │ ├── ark.rst │ │ │ ├── avp.rst │ │ │ ├── bnx2x.rst │ │ │ ├── bnxt.rst │ │ │ ├── build_and_test.rst │ │ │ ├── cxgbe.rst │ │ │ ├── dpaa.rst │ │ │ ├── dpaa2.rst │ │ │ ├── e1000em.rst │ │ │ ├── ena.rst │ │ │ ├── enic.rst │ │ │ ├── fail_safe.rst │ │ │ ├── features.rst │ │ │ ├── features │ │ │ │ ├── afpacket.ini │ │ │ │ ├── ark.ini │ │ │ │ ├── avf.ini │ │ │ │ ├── avf_vec.ini │ │ │ │ ├── avp.ini │ │ │ │ ├── bnx2x.ini │ │ │ │ ├── bnx2x_vf.ini │ │ │ │ ├── bnxt.ini │ │ │ │ ├── bonding.ini │ │ │ │ ├── cxgbe.ini │ │ │ │ ├── default.ini │ │ │ │ ├── dpaa.ini │ │ │ │ ├── dpaa2.ini │ │ │ │ ├── e1000.ini │ │ │ │ ├── ena.ini │ │ │ │ ├── enic.ini │ │ │ │ ├── failsafe.ini │ │ │ │ ├── fm10k.ini │ │ │ │ ├── fm10k_vf.ini │ │ │ │ ├── i40e.ini │ │ │ │ ├── i40e_vec.ini │ │ │ │ ├── i40e_vf.ini │ │ │ │ ├── i40e_vf_vec.ini │ │ │ │ ├── igb.ini │ │ │ │ ├── igb_vf.ini │ │ │ │ ├── ixgbe.ini │ │ │ │ ├── ixgbe_vec.ini │ │ │ │ ├── ixgbe_vf.ini │ │ │ │ ├── ixgbe_vf_vec.ini │ │ │ │ ├── kni.ini │ │ │ │ ├── liquidio.ini │ │ │ │ ├── mlx4.ini │ │ │ │ ├── mlx5.ini │ │ │ │ ├── mrvl.ini │ │ │ │ ├── nfp.ini │ │ │ │ ├── nfp_vf.ini │ │ │ │ ├── null.ini │ │ │ │ ├── octeontx.ini │ │ │ │ ├── pcap.ini │ │ │ │ ├── qede.ini │ │ │ │ ├── qede_vf.ini │ │ │ │ ├── ring.ini │ │ │ │ ├── sfc_efx.ini │ │ │ │ ├── szedata2.ini │ │ │ │ ├── tap.ini │ │ │ │ ├── thunderx.ini │ │ │ │ ├── vdev_netvsc.ini │ │ │ │ ├── vhost.ini │ │ │ │ ├── virtio.ini │ │ │ │ ├── virtio_vec.ini │ │ │ │ └── vmxnet3.ini │ │ │ ├── fm10k.rst │ │ │ ├── i40e.rst │ │ │ ├── igb.rst │ │ │ ├── img │ │ │ │ ├── console.png │ │ │ │ ├── fast_pkt_proc.png │ │ │ │ ├── forward_stats.png │ │ │ │ ├── host_vm_comms.png │ │ │ │ ├── host_vm_comms_qemu.png │ │ │ │ ├── intel_perf_test_setup.svg │ │ │ │ ├── inter_vm_comms.png │ │ │ │ ├── perf_benchmark.png │ │ │ │ ├── single_port_nic.png │ │ │ │ ├── vm_vm_comms.png │ │ │ │ ├── vmxnet3_int.png │ │ │ │ └── vswitch_vm.png │ │ │ ├── index.rst │ │ │ ├── intel_vf.rst │ │ │ ├── ixgbe.rst │ │ │ ├── kni.rst │ │ │ ├── liquidio.rst │ │ │ ├── mlx4.rst │ │ │ ├── mlx5.rst │ │ │ ├── mrvl.rst │ │ │ ├── nfp.rst │ │ │ ├── octeontx.rst │ │ │ ├── overview.rst │ │ │ ├── pcap_ring.rst │ │ │ ├── qede.rst │ │ │ ├── sfc_efx.rst │ │ │ ├── szedata2.rst │ │ │ ├── tap.rst │ │ │ ├── thunderx.rst │ │ │ ├── vdev_netvsc.rst │ │ │ ├── vhost.rst │ │ │ ├── virtio.rst │ │ │ └── vmxnet3.rst │ │ ├── platform │ │ │ ├── index.rst │ │ │ └── octeontx.rst │ │ ├── prog_guide │ │ │ ├── bbdev.rst │ │ │ ├── build_app.rst │ │ │ ├── cryptodev_lib.rst │ │ │ ├── dev_kit_build_system.rst │ │ │ ├── dev_kit_root_make_help.rst │ │ │ ├── efd_lib.rst │ │ │ ├── env_abstraction_layer.rst │ │ │ ├── event_ethernet_rx_adapter.rst │ │ │ ├── eventdev.rst │ │ │ ├── ext_app_lib_make_help.rst │ │ │ ├── extend_dpdk.rst │ │ │ ├── flow_classify_lib.rst │ │ │ ├── generic_receive_offload_lib.rst │ │ │ ├── generic_segmentation_offload_lib.rst │ │ │ ├── glossary.rst │ │ │ ├── hash_lib.rst │ │ │ ├── img │ │ │ │ ├── architecture-overview.svg │ │ │ │ ├── blk_diag_dropper.png │ │ │ │ ├── bond-mode-0.svg │ │ │ │ ├── bond-mode-1.svg │ │ │ │ ├── bond-mode-2.svg │ │ │ │ ├── bond-mode-3.svg │ │ │ │ ├── bond-mode-4.svg │ │ │ │ ├── bond-mode-5.svg │ │ │ │ ├── bond-overview.svg │ │ │ │ ├── crypto_op.svg │ │ │ │ ├── crypto_xform_chain.svg │ │ │ │ ├── cryptodev_sym_sess.svg │ │ │ │ ├── data_struct_per_port.png │ │ │ │ ├── drop_probability_eq3.png │ │ │ │ ├── drop_probability_eq4.png │ │ │ │ ├── drop_probability_graph.png │ │ │ │ ├── efd_i1.svg │ │ │ │ ├── efd_i10.svg │ │ │ │ ├── efd_i11.svg │ │ │ │ ├── efd_i12.svg │ │ │ │ ├── efd_i2.svg │ │ │ │ ├── efd_i3.svg │ │ │ │ ├── efd_i4.svg │ │ │ │ ├── efd_i5.svg │ │ │ │ ├── efd_i6.svg │ │ │ │ ├── efd_i7.svg │ │ │ │ ├── efd_i8.svg │ │ │ │ ├── efd_i9.svg │ │ │ │ ├── eq2_expression.png │ │ │ │ ├── eq2_factor.png │ │ │ │ ├── eventdev_usage.svg │ │ │ │ ├── ewma_filter_eq_1.png │ │ │ │ ├── ewma_filter_eq_2.png │ │ │ │ ├── ex_data_flow_tru_dropper.png │ │ │ │ ├── figure32.png │ │ │ │ ├── figure33.png │ │ │ │ ├── figure34.png │ │ │ │ ├── figure35.png │ │ │ │ ├── figure37.png │ │ │ │ ├── figure38.png │ │ │ │ ├── figure39.png │ │ │ │ ├── flow_tru_droppper.png │ │ │ │ ├── gro-key-algorithm.svg │ │ │ │ ├── gso-output-segment-format.svg │ │ │ │ ├── gso-three-seg-mbuf.svg │ │ │ │ ├── hier_sched_blk.png │ │ │ │ ├── kernel_nic_intf.png │ │ │ │ ├── kni_traffic_flow.png │ │ │ │ ├── linuxapp_launch.svg │ │ │ │ ├── m_definition.png │ │ │ │ ├── malloc_heap.svg │ │ │ │ ├── mbuf1.svg │ │ │ │ ├── mbuf2.svg │ │ │ │ ├── member_i1.svg │ │ │ │ ├── member_i2.svg │ │ │ │ ├── member_i3.svg │ │ │ │ ├── member_i4.svg │ │ │ │ ├── member_i5.svg │ │ │ │ ├── member_i6.svg │ │ │ │ ├── member_i7.svg │ │ │ │ ├── memory-management.svg │ │ │ │ ├── memory-management2.svg │ │ │ │ ├── mempool.svg │ │ │ │ ├── multi_process_memory.svg │ │ │ │ ├── packet_distributor1.png │ │ │ │ ├── packet_distributor2.png │ │ │ │ ├── pipe_prefetch_sm.png │ │ │ │ ├── pkt_drop_probability.png │ │ │ │ ├── pkt_flow_kni.png │ │ │ │ ├── pkt_proc_pipeline_qos.png │ │ │ │ ├── prefetch_pipeline.png │ │ │ │ ├── ring-dequeue1.svg │ │ │ │ ├── ring-dequeue2.svg │ │ │ │ ├── ring-dequeue3.svg │ │ │ │ ├── ring-enqueue1.svg │ │ │ │ ├── ring-enqueue2.svg │ │ │ │ ├── ring-enqueue3.svg │ │ │ │ ├── ring-modulo1.svg │ │ │ │ ├── ring-modulo2.svg │ │ │ │ ├── ring-mp-enqueue1.svg │ │ │ │ ├── ring-mp-enqueue2.svg │ │ │ │ ├── ring-mp-enqueue3.svg │ │ │ │ ├── ring-mp-enqueue4.svg │ │ │ │ ├── ring-mp-enqueue5.svg │ │ │ │ ├── ring1.svg │ │ │ │ ├── sched_hier_per_port.png │ │ │ │ ├── tbl24_tbl8.png │ │ │ │ ├── tbl24_tbl8_tbl8.png │ │ │ │ └── vhost_net_arch.png │ │ │ ├── index.rst │ │ │ ├── intro.rst │ │ │ ├── ip_fragment_reassembly_lib.rst │ │ │ ├── kernel_nic_interface.rst │ │ │ ├── link_bonding_poll_mode_drv_lib.rst │ │ │ ├── lpm6_lib.rst │ │ │ ├── lpm_lib.rst │ │ │ ├── mbuf_lib.rst │ │ │ ├── member_lib.rst │ │ │ ├── mempool_lib.rst │ │ │ ├── metrics_lib.rst │ │ │ ├── multi_proc_support.rst │ │ │ ├── overview.rst │ │ │ ├── packet_classif_access_ctrl.rst │ │ │ ├── packet_distrib_lib.rst │ │ │ ├── packet_framework.rst │ │ │ ├── pdump_lib.rst │ │ │ ├── perf_opt_guidelines.rst │ │ │ ├── poll_mode_drv.rst │ │ │ ├── port_hotplug_framework.rst │ │ │ ├── power_man.rst │ │ │ ├── profile_app.rst │ │ │ ├── qos_framework.rst │ │ │ ├── rawdev.rst │ │ │ ├── reorder_lib.rst │ │ │ ├── ring_lib.rst │ │ │ ├── rte_flow.rst │ │ │ ├── rte_security.rst │ │ │ ├── service_cores.rst │ │ │ ├── source_org.rst │ │ │ ├── thread_safety_dpdk_functions.rst │ │ │ ├── timer_lib.rst │ │ │ ├── traffic_management.rst │ │ │ ├── traffic_metering_and_policing.rst │ │ │ ├── vhost_lib.rst │ │ │ └── writing_efficient_code.rst │ │ ├── rel_notes │ │ │ ├── deprecation.rst │ │ │ ├── index.rst │ │ │ ├── known_issues.rst │ │ │ ├── rel_description.rst │ │ │ ├── release_16_04.rst │ │ │ ├── release_16_07.rst │ │ │ ├── release_16_11.rst │ │ │ ├── release_17_02.rst │ │ │ ├── release_17_05.rst │ │ │ ├── release_17_08.rst │ │ │ ├── release_17_11.rst │ │ │ ├── release_18_02.rst │ │ │ ├── release_1_8.rst │ │ │ ├── release_2_0.rst │ │ │ ├── release_2_1.rst │ │ │ └── release_2_2.rst │ │ ├── sample_app_ug │ │ │ ├── bbdev_app.rst │ │ │ ├── cmd_line.rst │ │ │ ├── compiling.rst │ │ │ ├── dist_app.rst │ │ │ ├── ethtool.rst │ │ │ ├── eventdev_pipeline.rst │ │ │ ├── exception_path.rst │ │ │ ├── flow_classify.rst │ │ │ ├── flow_filtering.rst │ │ │ ├── hello_world.rst │ │ │ ├── img │ │ │ │ ├── client_svr_sym_multi_proc_app.png │ │ │ │ ├── dist_app.svg │ │ │ │ ├── dist_perf.svg │ │ │ │ ├── example_rules.png │ │ │ │ ├── exception_path_example.svg │ │ │ │ ├── ip_pipelines_1.svg │ │ │ │ ├── ip_pipelines_2.svg │ │ │ │ ├── ip_pipelines_3.svg │ │ │ │ ├── ipsec_endpoints.svg │ │ │ │ ├── ipv4_acl_rule.png │ │ │ │ ├── kernel_nic.png │ │ │ │ ├── l2_fwd_benchmark_setup.svg │ │ │ │ ├── l2_fwd_encrypt_flow.svg │ │ │ │ ├── l2_fwd_virtenv_benchmark_setup.png │ │ │ │ ├── l2_fwd_vm2vm.svg │ │ │ │ ├── load_bal_app_arch.png │ │ │ │ ├── master_slave_proc.png │ │ │ │ ├── overlay_networking.svg │ │ │ │ ├── performance_thread_1.svg │ │ │ │ ├── performance_thread_2.svg │ │ │ │ ├── pipeline_overview.png │ │ │ │ ├── ptpclient.svg │ │ │ │ ├── qos_sched_app_arch.png │ │ │ │ ├── quickassist_block_diagram.png │ │ │ │ ├── ring_pipeline_perf_setup.png │ │ │ │ ├── server_node_efd.svg │ │ │ │ ├── slave_proc_recov.png │ │ │ │ ├── sym_multi_proc_app.png │ │ │ │ ├── tep_termination_arch.svg │ │ │ │ ├── test_pipeline_app.png │ │ │ │ ├── threads_pipelines.png │ │ │ │ ├── vm_power_mgr_highlevel.svg │ │ │ │ ├── vm_power_mgr_vm_request_seq.svg │ │ │ │ └── vmdq_dcb_example.svg │ │ │ ├── index.rst │ │ │ ├── intro.rst │ │ │ ├── ip_frag.rst │ │ │ ├── ip_pipeline.rst │ │ │ ├── ip_reassembly.rst │ │ │ ├── ipsec_secgw.rst │ │ │ ├── ipv4_multicast.rst │ │ │ ├── keep_alive.rst │ │ │ ├── kernel_nic_interface.rst │ │ │ ├── l2_forward_cat.rst │ │ │ ├── l2_forward_crypto.rst │ │ │ ├── l2_forward_job_stats.rst │ │ │ ├── l2_forward_real_virtual.rst │ │ │ ├── l3_forward.rst │ │ │ ├── l3_forward_access_ctrl.rst │ │ │ ├── l3_forward_power_man.rst │ │ │ ├── l3_forward_virtual.rst │ │ │ ├── link_status_intr.rst │ │ │ ├── load_balancer.rst │ │ │ ├── multi_process.rst │ │ │ ├── netmap_compatibility.rst │ │ │ ├── packet_ordering.rst │ │ │ ├── performance_thread.rst │ │ │ ├── ptpclient.rst │ │ │ ├── qos_metering.rst │ │ │ ├── qos_scheduler.rst │ │ │ ├── quota_watermark.rst │ │ │ ├── rxtx_callbacks.rst │ │ │ ├── server_node_efd.rst │ │ │ ├── service_cores.rst │ │ │ ├── skeleton.rst │ │ │ ├── tep_termination.rst │ │ │ ├── test_pipeline.rst │ │ │ ├── timer.rst │ │ │ ├── vhost.rst │ │ │ ├── vhost_scsi.rst │ │ │ ├── vm_power_management.rst │ │ │ └── vmdq_dcb_forwarding.rst │ │ ├── testpmd_app_ug │ │ │ ├── build_app.rst │ │ │ ├── index.rst │ │ │ ├── intro.rst │ │ │ ├── run_app.rst │ │ │ └── testpmd_funcs.rst │ │ └── tools │ │ │ ├── cryptoperf.rst │ │ │ ├── devbind.rst │ │ │ ├── img │ │ │ ├── eventdev_order_atq_test.svg │ │ │ ├── eventdev_order_queue_test.svg │ │ │ ├── eventdev_perf_atq_test.svg │ │ │ ├── eventdev_perf_queue_test.svg │ │ │ ├── eventdev_pipeline_atq_test_generic.svg │ │ │ ├── eventdev_pipeline_atq_test_lockfree.svg │ │ │ ├── eventdev_pipeline_queue_test_generic.svg │ │ │ └── eventdev_pipeline_queue_test_lockfree.svg │ │ │ ├── index.rst │ │ │ ├── pdump.rst │ │ │ ├── pmdinfo.rst │ │ │ ├── proc_info.rst │ │ │ ├── testbbdev.rst │ │ │ └── testeventdev.rst │ └── logo │ │ ├── DPDK_logo_horizontal_tag.png │ │ └── DPDK_logo_vertical_rev_small.png ├── drivers │ ├── Makefile │ ├── bbdev │ │ ├── Makefile │ │ ├── null │ │ │ ├── Makefile │ │ │ ├── bbdev_null.c │ │ │ └── rte_pmd_bbdev_null_version.map │ │ └── turbo_sw │ │ │ ├── Makefile │ │ │ ├── bbdev_turbo_software.c │ │ │ └── rte_pmd_bbdev_turbo_sw_version.map │ ├── bus │ │ ├── Makefile │ │ ├── dpaa │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── fman │ │ │ │ │ ├── fman.c │ │ │ │ │ ├── fman_hw.c │ │ │ │ │ ├── netcfg_layer.c │ │ │ │ │ └── of.c │ │ │ │ └── qbman │ │ │ │ │ ├── bman.c │ │ │ │ │ ├── bman.h │ │ │ │ │ ├── bman_driver.c │ │ │ │ │ ├── bman_priv.h │ │ │ │ │ ├── dpaa_alloc.c │ │ │ │ │ ├── dpaa_sys.c │ │ │ │ │ ├── dpaa_sys.h │ │ │ │ │ ├── process.c │ │ │ │ │ ├── qman.c │ │ │ │ │ ├── qman.h │ │ │ │ │ ├── qman_driver.c │ │ │ │ │ └── qman_priv.h │ │ │ ├── dpaa_bus.c │ │ │ ├── include │ │ │ │ ├── compat.h │ │ │ │ ├── dpaa_bits.h │ │ │ │ ├── dpaa_list.h │ │ │ │ ├── dpaa_rbtree.h │ │ │ │ ├── fman.h │ │ │ │ ├── fsl_bman.h │ │ │ │ ├── fsl_fman.h │ │ │ │ ├── fsl_fman_crc64.h │ │ │ │ ├── fsl_qman.h │ │ │ │ ├── fsl_usd.h │ │ │ │ ├── netcfg.h │ │ │ │ ├── of.h │ │ │ │ └── process.h │ │ │ ├── rte_bus_dpaa_version.map │ │ │ ├── rte_dpaa_bus.h │ │ │ └── rte_dpaa_logs.h │ │ ├── fslmc │ │ │ ├── Makefile │ │ │ ├── fslmc_bus.c │ │ │ ├── fslmc_logs.h │ │ │ ├── fslmc_vfio.c │ │ │ ├── fslmc_vfio.h │ │ │ ├── mc │ │ │ │ ├── dpbp.c │ │ │ │ ├── dpci.c │ │ │ │ ├── dpcon.c │ │ │ │ ├── dpio.c │ │ │ │ ├── dpmng.c │ │ │ │ ├── fsl_dpbp.h │ │ │ │ ├── fsl_dpbp_cmd.h │ │ │ │ ├── fsl_dpci.h │ │ │ │ ├── fsl_dpci_cmd.h │ │ │ │ ├── fsl_dpcon.h │ │ │ │ ├── fsl_dpcon_cmd.h │ │ │ │ ├── fsl_dpio.h │ │ │ │ ├── fsl_dpio_cmd.h │ │ │ │ ├── fsl_dpmng.h │ │ │ │ ├── fsl_dpmng_cmd.h │ │ │ │ ├── fsl_mc_cmd.h │ │ │ │ ├── fsl_mc_sys.h │ │ │ │ └── mc_sys.c │ │ │ ├── portal │ │ │ │ ├── dpaa2_hw_dpbp.c │ │ │ │ ├── dpaa2_hw_dpci.c │ │ │ │ ├── dpaa2_hw_dpio.c │ │ │ │ ├── dpaa2_hw_dpio.h │ │ │ │ └── dpaa2_hw_pvt.h │ │ │ ├── qbman │ │ │ │ ├── include │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── fsl_qbman_base.h │ │ │ │ │ ├── fsl_qbman_debug.h │ │ │ │ │ └── fsl_qbman_portal.h │ │ │ │ ├── qbman_debug.c │ │ │ │ ├── qbman_portal.c │ │ │ │ ├── qbman_portal.h │ │ │ │ ├── qbman_sys.h │ │ │ │ └── qbman_sys_decl.h │ │ │ ├── rte_bus_fslmc_version.map │ │ │ └── rte_fslmc.h │ │ ├── meson.build │ │ ├── pci │ │ │ ├── Makefile │ │ │ ├── bsd │ │ │ │ ├── Makefile │ │ │ │ └── pci.c │ │ │ ├── linux │ │ │ │ ├── Makefile │ │ │ │ ├── pci.c │ │ │ │ ├── pci_init.h │ │ │ │ ├── pci_uio.c │ │ │ │ └── pci_vfio.c │ │ │ ├── meson.build │ │ │ ├── pci_common.c │ │ │ ├── pci_common_uio.c │ │ │ ├── private.h │ │ │ ├── rte_bus_pci.h │ │ │ └── rte_bus_pci_version.map │ │ └── vdev │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_bus_vdev.h │ │ │ ├── rte_bus_vdev_version.map │ │ │ ├── vdev.c │ │ │ └── vdev_logs.h │ ├── crypto │ │ ├── Makefile │ │ ├── aesni_gcm │ │ │ ├── Makefile │ │ │ ├── aesni_gcm_ops.h │ │ │ ├── aesni_gcm_pmd.c │ │ │ ├── aesni_gcm_pmd_ops.c │ │ │ ├── aesni_gcm_pmd_private.h │ │ │ └── rte_pmd_aesni_gcm_version.map │ │ ├── aesni_mb │ │ │ ├── Makefile │ │ │ ├── aesni_mb_ops.h │ │ │ ├── rte_aesni_mb_pmd.c │ │ │ ├── rte_aesni_mb_pmd_ops.c │ │ │ ├── rte_aesni_mb_pmd_private.h │ │ │ └── rte_pmd_aesni_mb_version.map │ │ ├── armv8 │ │ │ ├── Makefile │ │ │ ├── rte_armv8_pmd.c │ │ │ ├── rte_armv8_pmd_ops.c │ │ │ ├── rte_armv8_pmd_private.h │ │ │ └── rte_pmd_armv8_version.map │ │ ├── dpaa2_sec │ │ │ ├── Makefile │ │ │ ├── dpaa2_sec_dpseci.c │ │ │ ├── dpaa2_sec_logs.h │ │ │ ├── dpaa2_sec_priv.h │ │ │ ├── hw │ │ │ │ ├── compat.h │ │ │ │ ├── desc.h │ │ │ │ ├── desc │ │ │ │ │ ├── algo.h │ │ │ │ │ ├── common.h │ │ │ │ │ └── ipsec.h │ │ │ │ ├── rta.h │ │ │ │ └── rta │ │ │ │ │ ├── fifo_load_store_cmd.h │ │ │ │ │ ├── header_cmd.h │ │ │ │ │ ├── jump_cmd.h │ │ │ │ │ ├── key_cmd.h │ │ │ │ │ ├── load_cmd.h │ │ │ │ │ ├── math_cmd.h │ │ │ │ │ ├── move_cmd.h │ │ │ │ │ ├── nfifo_cmd.h │ │ │ │ │ ├── operation_cmd.h │ │ │ │ │ ├── protocol_cmd.h │ │ │ │ │ ├── sec_run_time_asm.h │ │ │ │ │ ├── seq_in_out_ptr_cmd.h │ │ │ │ │ ├── signature_cmd.h │ │ │ │ │ └── store_cmd.h │ │ │ ├── mc │ │ │ │ ├── dpseci.c │ │ │ │ ├── fsl_dpseci.h │ │ │ │ └── fsl_dpseci_cmd.h │ │ │ └── rte_pmd_dpaa2_sec_version.map │ │ ├── dpaa_sec │ │ │ ├── Makefile │ │ │ ├── dpaa_sec.c │ │ │ ├── dpaa_sec.h │ │ │ ├── dpaa_sec_log.h │ │ │ └── rte_pmd_dpaa_sec_version.map │ │ ├── kasumi │ │ │ ├── Makefile │ │ │ ├── rte_kasumi_pmd.c │ │ │ ├── rte_kasumi_pmd_ops.c │ │ │ ├── rte_kasumi_pmd_private.h │ │ │ └── rte_pmd_kasumi_version.map │ │ ├── meson.build │ │ ├── mrvl │ │ │ ├── Makefile │ │ │ ├── rte_mrvl_compat.h │ │ │ ├── rte_mrvl_pmd.c │ │ │ ├── rte_mrvl_pmd_ops.c │ │ │ ├── rte_mrvl_pmd_private.h │ │ │ └── rte_pmd_mrvl_version.map │ │ ├── null │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── null_crypto_pmd.c │ │ │ ├── null_crypto_pmd_ops.c │ │ │ ├── null_crypto_pmd_private.h │ │ │ └── rte_pmd_null_crypto_version.map │ │ ├── openssl │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_openssl_pmd.c │ │ │ ├── rte_openssl_pmd_ops.c │ │ │ ├── rte_openssl_pmd_private.h │ │ │ └── rte_pmd_openssl_version.map │ │ ├── qat │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── qat_adf │ │ │ │ ├── adf_transport_access_macros.h │ │ │ │ ├── icp_qat_fw.h │ │ │ │ ├── icp_qat_fw_la.h │ │ │ │ ├── icp_qat_hw.h │ │ │ │ ├── qat_algs.h │ │ │ │ └── qat_algs_build_desc.c │ │ │ ├── qat_crypto.c │ │ │ ├── qat_crypto.h │ │ │ ├── qat_crypto_capabilities.h │ │ │ ├── qat_logs.h │ │ │ ├── qat_qp.c │ │ │ ├── rte_pmd_qat_version.map │ │ │ └── rte_qat_cryptodev.c │ │ ├── scheduler │ │ │ ├── Makefile │ │ │ ├── rte_cryptodev_scheduler.c │ │ │ ├── rte_cryptodev_scheduler.h │ │ │ ├── rte_cryptodev_scheduler_operations.h │ │ │ ├── rte_pmd_crypto_scheduler_version.map │ │ │ ├── scheduler_failover.c │ │ │ ├── scheduler_multicore.c │ │ │ ├── scheduler_pkt_size_distr.c │ │ │ ├── scheduler_pmd.c │ │ │ ├── scheduler_pmd_ops.c │ │ │ ├── scheduler_pmd_private.h │ │ │ └── scheduler_roundrobin.c │ │ ├── snow3g │ │ │ ├── Makefile │ │ │ ├── rte_pmd_snow3g_version.map │ │ │ ├── rte_snow3g_pmd.c │ │ │ ├── rte_snow3g_pmd_ops.c │ │ │ └── rte_snow3g_pmd_private.h │ │ └── zuc │ │ │ ├── Makefile │ │ │ ├── rte_pmd_zuc_version.map │ │ │ ├── rte_zuc_pmd.c │ │ │ ├── rte_zuc_pmd_ops.c │ │ │ └── rte_zuc_pmd_private.h │ ├── event │ │ ├── Makefile │ │ ├── dpaa │ │ │ ├── Makefile │ │ │ ├── dpaa_eventdev.c │ │ │ ├── dpaa_eventdev.h │ │ │ └── rte_pmd_dpaa_event_version.map │ │ ├── dpaa2 │ │ │ ├── Makefile │ │ │ ├── dpaa2_eventdev.c │ │ │ ├── dpaa2_eventdev.h │ │ │ ├── dpaa2_eventdev_logs.h │ │ │ ├── dpaa2_hw_dpcon.c │ │ │ └── rte_pmd_dpaa2_event_version.map │ │ ├── meson.build │ │ ├── octeontx │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_pmd_octeontx_event_version.map │ │ │ ├── ssovf_evdev.c │ │ │ ├── ssovf_evdev.h │ │ │ ├── ssovf_evdev_selftest.c │ │ │ ├── ssovf_worker.c │ │ │ └── ssovf_worker.h │ │ ├── opdl │ │ │ ├── Makefile │ │ │ ├── opdl_evdev.c │ │ │ ├── opdl_evdev.h │ │ │ ├── opdl_evdev_init.c │ │ │ ├── opdl_evdev_xstats.c │ │ │ ├── opdl_log.h │ │ │ ├── opdl_ring.c │ │ │ ├── opdl_ring.h │ │ │ ├── opdl_test.c │ │ │ └── rte_pmd_evdev_opdl_version.map │ │ ├── skeleton │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_pmd_skeleton_event_version.map │ │ │ ├── skeleton_eventdev.c │ │ │ └── skeleton_eventdev.h │ │ └── sw │ │ │ ├── Makefile │ │ │ ├── event_ring.h │ │ │ ├── iq_chunk.h │ │ │ ├── meson.build │ │ │ ├── rte_pmd_sw_event_version.map │ │ │ ├── sw_evdev.c │ │ │ ├── sw_evdev.h │ │ │ ├── sw_evdev_log.h │ │ │ ├── sw_evdev_scheduler.c │ │ │ ├── sw_evdev_selftest.c │ │ │ ├── sw_evdev_worker.c │ │ │ └── sw_evdev_xstats.c │ ├── mempool │ │ ├── Makefile │ │ ├── dpaa │ │ │ ├── Makefile │ │ │ ├── dpaa_mempool.c │ │ │ ├── dpaa_mempool.h │ │ │ └── rte_mempool_dpaa_version.map │ │ ├── dpaa2 │ │ │ ├── Makefile │ │ │ ├── dpaa2_hw_mempool.c │ │ │ ├── dpaa2_hw_mempool.h │ │ │ └── rte_mempool_dpaa2_version.map │ │ ├── meson.build │ │ ├── octeontx │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── octeontx_fpavf.c │ │ │ ├── octeontx_fpavf.h │ │ │ ├── octeontx_mbox.c │ │ │ ├── octeontx_mbox.h │ │ │ ├── octeontx_pool_logs.h │ │ │ ├── octeontx_ssovf.c │ │ │ ├── rte_mempool_octeontx.c │ │ │ └── rte_mempool_octeontx_version.map │ │ ├── ring │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_mempool_ring.c │ │ │ └── rte_mempool_ring_version.map │ │ └── stack │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_mempool_stack.c │ │ │ └── rte_mempool_stack_version.map │ ├── meson.build │ ├── net │ │ ├── Makefile │ │ ├── af_packet │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_eth_af_packet.c │ │ │ └── rte_pmd_af_packet_version.map │ │ ├── ark │ │ │ ├── Makefile │ │ │ ├── ark_ddm.c │ │ │ ├── ark_ddm.h │ │ │ ├── ark_ethdev.c │ │ │ ├── ark_ethdev_rx.c │ │ │ ├── ark_ethdev_rx.h │ │ │ ├── ark_ethdev_tx.c │ │ │ ├── ark_ethdev_tx.h │ │ │ ├── ark_ext.h │ │ │ ├── ark_global.h │ │ │ ├── ark_logs.h │ │ │ ├── ark_mpu.c │ │ │ ├── ark_mpu.h │ │ │ ├── ark_pktchkr.c │ │ │ ├── ark_pktchkr.h │ │ │ ├── ark_pktdir.c │ │ │ ├── ark_pktdir.h │ │ │ ├── ark_pktgen.c │ │ │ ├── ark_pktgen.h │ │ │ ├── ark_rqp.c │ │ │ ├── ark_rqp.h │ │ │ ├── ark_udm.c │ │ │ ├── ark_udm.h │ │ │ └── rte_pmd_ark_version.map │ │ ├── avf │ │ │ ├── Makefile │ │ │ ├── avf.h │ │ │ ├── avf_ethdev.c │ │ │ ├── avf_log.h │ │ │ ├── avf_rxtx.c │ │ │ ├── avf_rxtx.h │ │ │ ├── avf_rxtx_vec_common.h │ │ │ ├── avf_rxtx_vec_sse.c │ │ │ ├── avf_vchnl.c │ │ │ ├── base │ │ │ │ ├── README │ │ │ │ ├── avf_adminq.c │ │ │ │ ├── avf_adminq.h │ │ │ │ ├── avf_adminq_cmd.h │ │ │ │ ├── avf_alloc.h │ │ │ │ ├── avf_common.c │ │ │ │ ├── avf_devids.h │ │ │ │ ├── avf_hmc.h │ │ │ │ ├── avf_lan_hmc.h │ │ │ │ ├── avf_osdep.h │ │ │ │ ├── avf_prototype.h │ │ │ │ ├── avf_register.h │ │ │ │ ├── avf_status.h │ │ │ │ ├── avf_type.h │ │ │ │ └── virtchnl.h │ │ │ └── rte_pmd_avf_version.map │ │ ├── avp │ │ │ ├── Makefile │ │ │ ├── avp_ethdev.c │ │ │ ├── avp_logs.h │ │ │ ├── rte_avp_common.h │ │ │ ├── rte_avp_fifo.h │ │ │ └── rte_pmd_avp_version.map │ │ ├── bnx2x │ │ │ ├── LICENSE.bnx2x_pmd │ │ │ ├── Makefile │ │ │ ├── bnx2x.c │ │ │ ├── bnx2x.h │ │ │ ├── bnx2x_ethdev.c │ │ │ ├── bnx2x_ethdev.h │ │ │ ├── bnx2x_logs.h │ │ │ ├── bnx2x_rxtx.c │ │ │ ├── bnx2x_rxtx.h │ │ │ ├── bnx2x_stats.c │ │ │ ├── bnx2x_stats.h │ │ │ ├── bnx2x_vfpf.c │ │ │ ├── bnx2x_vfpf.h │ │ │ ├── ecore_fw_defs.h │ │ │ ├── ecore_hsi.h │ │ │ ├── ecore_init.h │ │ │ ├── ecore_init_ops.h │ │ │ ├── ecore_mfw_req.h │ │ │ ├── ecore_reg.h │ │ │ ├── ecore_sp.c │ │ │ ├── ecore_sp.h │ │ │ ├── elink.c │ │ │ ├── elink.h │ │ │ └── rte_pmd_bnx2x_version.map │ │ ├── bnxt │ │ │ ├── Makefile │ │ │ ├── bnxt.h │ │ │ ├── bnxt_cpr.c │ │ │ ├── bnxt_cpr.h │ │ │ ├── bnxt_ethdev.c │ │ │ ├── bnxt_filter.c │ │ │ ├── bnxt_filter.h │ │ │ ├── bnxt_hwrm.c │ │ │ ├── bnxt_hwrm.h │ │ │ ├── bnxt_irq.c │ │ │ ├── bnxt_irq.h │ │ │ ├── bnxt_nvm_defs.h │ │ │ ├── bnxt_ring.c │ │ │ ├── bnxt_ring.h │ │ │ ├── bnxt_rxq.c │ │ │ ├── bnxt_rxq.h │ │ │ ├── bnxt_rxr.c │ │ │ ├── bnxt_rxr.h │ │ │ ├── bnxt_stats.c │ │ │ ├── bnxt_stats.h │ │ │ ├── bnxt_txq.c │ │ │ ├── bnxt_txq.h │ │ │ ├── bnxt_txr.c │ │ │ ├── bnxt_txr.h │ │ │ ├── bnxt_vnic.c │ │ │ ├── bnxt_vnic.h │ │ │ ├── hsi_struct_def_dpdk.h │ │ │ ├── rte_pmd_bnxt.c │ │ │ ├── rte_pmd_bnxt.h │ │ │ └── rte_pmd_bnxt_version.map │ │ ├── bonding │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_eth_bond.h │ │ │ ├── rte_eth_bond_8023ad.c │ │ │ ├── rte_eth_bond_8023ad.h │ │ │ ├── rte_eth_bond_8023ad_private.h │ │ │ ├── rte_eth_bond_alb.c │ │ │ ├── rte_eth_bond_alb.h │ │ │ ├── rte_eth_bond_api.c │ │ │ ├── rte_eth_bond_args.c │ │ │ ├── rte_eth_bond_pmd.c │ │ │ ├── rte_eth_bond_private.h │ │ │ └── rte_pmd_bond_version.map │ │ ├── cxgbe │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── adapter.h │ │ │ │ ├── common.h │ │ │ │ ├── t4_chip_type.h │ │ │ │ ├── t4_hw.c │ │ │ │ ├── t4_hw.h │ │ │ │ ├── t4_msg.h │ │ │ │ ├── t4_pci_id_tbl.h │ │ │ │ ├── t4_regs.h │ │ │ │ ├── t4_regs_values.h │ │ │ │ └── t4fw_interface.h │ │ │ ├── cxgbe.h │ │ │ ├── cxgbe_compat.h │ │ │ ├── cxgbe_ethdev.c │ │ │ ├── cxgbe_main.c │ │ │ ├── rte_pmd_cxgbe_version.map │ │ │ └── sge.c │ │ ├── dpaa │ │ │ ├── Makefile │ │ │ ├── dpaa_ethdev.c │ │ │ ├── dpaa_ethdev.h │ │ │ ├── dpaa_rxtx.c │ │ │ ├── dpaa_rxtx.h │ │ │ ├── rte_pmd_dpaa.h │ │ │ └── rte_pmd_dpaa_version.map │ │ ├── dpaa2 │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── dpaa2_hw_dpni.c │ │ │ │ └── dpaa2_hw_dpni_annot.h │ │ │ ├── dpaa2_ethdev.c │ │ │ ├── dpaa2_ethdev.h │ │ │ ├── dpaa2_rxtx.c │ │ │ ├── mc │ │ │ │ ├── dpkg.c │ │ │ │ ├── dpni.c │ │ │ │ ├── fsl_dpkg.h │ │ │ │ ├── fsl_dpni.h │ │ │ │ ├── fsl_dpni_cmd.h │ │ │ │ └── fsl_net.h │ │ │ └── rte_pmd_dpaa2_version.map │ │ ├── e1000 │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── README │ │ │ │ ├── e1000_80003es2lan.c │ │ │ │ ├── e1000_80003es2lan.h │ │ │ │ ├── e1000_82540.c │ │ │ │ ├── e1000_82541.c │ │ │ │ ├── e1000_82541.h │ │ │ │ ├── e1000_82542.c │ │ │ │ ├── e1000_82543.c │ │ │ │ ├── e1000_82543.h │ │ │ │ ├── e1000_82571.c │ │ │ │ ├── e1000_82571.h │ │ │ │ ├── e1000_82575.c │ │ │ │ ├── e1000_82575.h │ │ │ │ ├── e1000_api.c │ │ │ │ ├── e1000_api.h │ │ │ │ ├── e1000_defines.h │ │ │ │ ├── e1000_hw.h │ │ │ │ ├── e1000_i210.c │ │ │ │ ├── e1000_i210.h │ │ │ │ ├── e1000_ich8lan.c │ │ │ │ ├── e1000_ich8lan.h │ │ │ │ ├── e1000_mac.c │ │ │ │ ├── e1000_mac.h │ │ │ │ ├── e1000_manage.c │ │ │ │ ├── e1000_manage.h │ │ │ │ ├── e1000_mbx.c │ │ │ │ ├── e1000_mbx.h │ │ │ │ ├── e1000_nvm.c │ │ │ │ ├── e1000_nvm.h │ │ │ │ ├── e1000_osdep.c │ │ │ │ ├── e1000_osdep.h │ │ │ │ ├── e1000_phy.c │ │ │ │ ├── e1000_phy.h │ │ │ │ ├── e1000_regs.h │ │ │ │ ├── e1000_vf.c │ │ │ │ ├── e1000_vf.h │ │ │ │ └── meson.build │ │ │ ├── e1000_ethdev.h │ │ │ ├── e1000_logs.c │ │ │ ├── e1000_logs.h │ │ │ ├── em_ethdev.c │ │ │ ├── em_rxtx.c │ │ │ ├── igb_ethdev.c │ │ │ ├── igb_flow.c │ │ │ ├── igb_pf.c │ │ │ ├── igb_regs.h │ │ │ ├── igb_rxtx.c │ │ │ ├── meson.build │ │ │ └── rte_pmd_e1000_version.map │ │ ├── ena │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── ena_com.c │ │ │ │ ├── ena_com.h │ │ │ │ ├── ena_defs │ │ │ │ │ ├── ena_admin_defs.h │ │ │ │ │ ├── ena_common_defs.h │ │ │ │ │ ├── ena_eth_io_defs.h │ │ │ │ │ ├── ena_gen_info.h │ │ │ │ │ ├── ena_includes.h │ │ │ │ │ └── ena_regs_defs.h │ │ │ │ ├── ena_eth_com.c │ │ │ │ ├── ena_eth_com.h │ │ │ │ ├── ena_plat.h │ │ │ │ └── ena_plat_dpdk.h │ │ │ ├── ena_ethdev.c │ │ │ ├── ena_ethdev.h │ │ │ ├── ena_logs.h │ │ │ ├── ena_platform.h │ │ │ └── rte_pmd_ena_version.map │ │ ├── enic │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── cq_desc.h │ │ │ │ ├── cq_enet_desc.h │ │ │ │ ├── rq_enet_desc.h │ │ │ │ ├── vnic_cq.c │ │ │ │ ├── vnic_cq.h │ │ │ │ ├── vnic_dev.c │ │ │ │ ├── vnic_dev.h │ │ │ │ ├── vnic_devcmd.h │ │ │ │ ├── vnic_enet.h │ │ │ │ ├── vnic_intr.c │ │ │ │ ├── vnic_intr.h │ │ │ │ ├── vnic_nic.h │ │ │ │ ├── vnic_resource.h │ │ │ │ ├── vnic_rq.c │ │ │ │ ├── vnic_rq.h │ │ │ │ ├── vnic_rss.c │ │ │ │ ├── vnic_rss.h │ │ │ │ ├── vnic_stats.h │ │ │ │ ├── vnic_wq.c │ │ │ │ ├── vnic_wq.h │ │ │ │ └── wq_enet_desc.h │ │ │ ├── enic.h │ │ │ ├── enic_clsf.c │ │ │ ├── enic_compat.h │ │ │ ├── enic_ethdev.c │ │ │ ├── enic_flow.c │ │ │ ├── enic_main.c │ │ │ ├── enic_res.c │ │ │ ├── enic_res.h │ │ │ ├── enic_rxtx.c │ │ │ └── rte_pmd_enic_version.map │ │ ├── failsafe │ │ │ ├── Makefile │ │ │ ├── failsafe.c │ │ │ ├── failsafe_args.c │ │ │ ├── failsafe_eal.c │ │ │ ├── failsafe_ether.c │ │ │ ├── failsafe_flow.c │ │ │ ├── failsafe_intr.c │ │ │ ├── failsafe_ops.c │ │ │ ├── failsafe_private.h │ │ │ ├── failsafe_rxtx.c │ │ │ └── rte_pmd_failsafe_version.map │ │ ├── fm10k │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── fm10k_api.c │ │ │ │ ├── fm10k_api.h │ │ │ │ ├── fm10k_common.c │ │ │ │ ├── fm10k_common.h │ │ │ │ ├── fm10k_mbx.c │ │ │ │ ├── fm10k_mbx.h │ │ │ │ ├── fm10k_osdep.h │ │ │ │ ├── fm10k_pf.c │ │ │ │ ├── fm10k_pf.h │ │ │ │ ├── fm10k_tlv.c │ │ │ │ ├── fm10k_tlv.h │ │ │ │ ├── fm10k_type.h │ │ │ │ ├── fm10k_vf.c │ │ │ │ ├── fm10k_vf.h │ │ │ │ └── meson.build │ │ │ ├── fm10k.h │ │ │ ├── fm10k_ethdev.c │ │ │ ├── fm10k_logs.h │ │ │ ├── fm10k_rxtx.c │ │ │ ├── fm10k_rxtx_vec.c │ │ │ ├── meson.build │ │ │ └── rte_pmd_fm10k_version.map │ │ ├── i40e │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── README │ │ │ │ ├── i40e_adminq.c │ │ │ │ ├── i40e_adminq.h │ │ │ │ ├── i40e_adminq_cmd.h │ │ │ │ ├── i40e_alloc.h │ │ │ │ ├── i40e_common.c │ │ │ │ ├── i40e_dcb.c │ │ │ │ ├── i40e_dcb.h │ │ │ │ ├── i40e_devids.h │ │ │ │ ├── i40e_diag.c │ │ │ │ ├── i40e_diag.h │ │ │ │ ├── i40e_hmc.c │ │ │ │ ├── i40e_hmc.h │ │ │ │ ├── i40e_lan_hmc.c │ │ │ │ ├── i40e_lan_hmc.h │ │ │ │ ├── i40e_nvm.c │ │ │ │ ├── i40e_osdep.h │ │ │ │ ├── i40e_prototype.h │ │ │ │ ├── i40e_register.h │ │ │ │ ├── i40e_status.h │ │ │ │ ├── i40e_type.h │ │ │ │ ├── meson.build │ │ │ │ └── virtchnl.h │ │ │ ├── i40e_ethdev.c │ │ │ ├── i40e_ethdev.h │ │ │ ├── i40e_ethdev_vf.c │ │ │ ├── i40e_fdir.c │ │ │ ├── i40e_flow.c │ │ │ ├── i40e_logs.h │ │ │ ├── i40e_pf.c │ │ │ ├── i40e_pf.h │ │ │ ├── i40e_regs.h │ │ │ ├── i40e_rxtx.c │ │ │ ├── i40e_rxtx.h │ │ │ ├── i40e_rxtx_vec_altivec.c │ │ │ ├── i40e_rxtx_vec_avx2.c │ │ │ ├── i40e_rxtx_vec_common.h │ │ │ ├── i40e_rxtx_vec_neon.c │ │ │ ├── i40e_rxtx_vec_sse.c │ │ │ ├── i40e_tm.c │ │ │ ├── meson.build │ │ │ ├── rte_pmd_i40e.c │ │ │ ├── rte_pmd_i40e.h │ │ │ └── rte_pmd_i40e_version.map │ │ ├── ixgbe │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── README │ │ │ │ ├── ixgbe_82598.c │ │ │ │ ├── ixgbe_82598.h │ │ │ │ ├── ixgbe_82599.c │ │ │ │ ├── ixgbe_82599.h │ │ │ │ ├── ixgbe_api.c │ │ │ │ ├── ixgbe_api.h │ │ │ │ ├── ixgbe_common.c │ │ │ │ ├── ixgbe_common.h │ │ │ │ ├── ixgbe_dcb.c │ │ │ │ ├── ixgbe_dcb.h │ │ │ │ ├── ixgbe_dcb_82598.c │ │ │ │ ├── ixgbe_dcb_82598.h │ │ │ │ ├── ixgbe_dcb_82599.c │ │ │ │ ├── ixgbe_dcb_82599.h │ │ │ │ ├── ixgbe_hv_vf.c │ │ │ │ ├── ixgbe_hv_vf.h │ │ │ │ ├── ixgbe_mbx.c │ │ │ │ ├── ixgbe_mbx.h │ │ │ │ ├── ixgbe_osdep.h │ │ │ │ ├── ixgbe_phy.c │ │ │ │ ├── ixgbe_phy.h │ │ │ │ ├── ixgbe_type.h │ │ │ │ ├── ixgbe_vf.c │ │ │ │ ├── ixgbe_vf.h │ │ │ │ ├── ixgbe_x540.c │ │ │ │ ├── ixgbe_x540.h │ │ │ │ ├── ixgbe_x550.c │ │ │ │ ├── ixgbe_x550.h │ │ │ │ └── meson.build │ │ │ ├── ixgbe_82599_bypass.c │ │ │ ├── ixgbe_bypass.c │ │ │ ├── ixgbe_bypass.h │ │ │ ├── ixgbe_bypass_api.h │ │ │ ├── ixgbe_bypass_defines.h │ │ │ ├── ixgbe_ethdev.c │ │ │ ├── ixgbe_ethdev.h │ │ │ ├── ixgbe_fdir.c │ │ │ ├── ixgbe_flow.c │ │ │ ├── ixgbe_ipsec.c │ │ │ ├── ixgbe_ipsec.h │ │ │ ├── ixgbe_logs.h │ │ │ ├── ixgbe_pf.c │ │ │ ├── ixgbe_regs.h │ │ │ ├── ixgbe_rxtx.c │ │ │ ├── ixgbe_rxtx.h │ │ │ ├── ixgbe_rxtx_vec_common.h │ │ │ ├── ixgbe_rxtx_vec_neon.c │ │ │ ├── ixgbe_rxtx_vec_sse.c │ │ │ ├── ixgbe_tm.c │ │ │ ├── meson.build │ │ │ ├── rte_pmd_ixgbe.c │ │ │ ├── rte_pmd_ixgbe.h │ │ │ └── rte_pmd_ixgbe_version.map │ │ ├── kni │ │ │ ├── Makefile │ │ │ ├── rte_eth_kni.c │ │ │ └── rte_pmd_kni_version.map │ │ ├── liquidio │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── lio_23xx_reg.h │ │ │ │ ├── lio_23xx_vf.c │ │ │ │ ├── lio_23xx_vf.h │ │ │ │ ├── lio_hw_defs.h │ │ │ │ ├── lio_mbox.c │ │ │ │ └── lio_mbox.h │ │ │ ├── lio_ethdev.c │ │ │ ├── lio_ethdev.h │ │ │ ├── lio_logs.h │ │ │ ├── lio_rxtx.c │ │ │ ├── lio_rxtx.h │ │ │ ├── lio_struct.h │ │ │ └── rte_pmd_lio_version.map │ │ ├── meson.build │ │ ├── mlx4 │ │ │ ├── Makefile │ │ │ ├── mlx4.c │ │ │ ├── mlx4.h │ │ │ ├── mlx4_ethdev.c │ │ │ ├── mlx4_flow.c │ │ │ ├── mlx4_flow.h │ │ │ ├── mlx4_glue.c │ │ │ ├── mlx4_glue.h │ │ │ ├── mlx4_intr.c │ │ │ ├── mlx4_mr.c │ │ │ ├── mlx4_prm.h │ │ │ ├── mlx4_rxq.c │ │ │ ├── mlx4_rxtx.c │ │ │ ├── mlx4_rxtx.h │ │ │ ├── mlx4_txq.c │ │ │ ├── mlx4_utils.c │ │ │ ├── mlx4_utils.h │ │ │ └── rte_pmd_mlx4_version.map │ │ ├── mlx5 │ │ │ ├── Makefile │ │ │ ├── mlx5.c │ │ │ ├── mlx5.h │ │ │ ├── mlx5_defs.h │ │ │ ├── mlx5_ethdev.c │ │ │ ├── mlx5_flow.c │ │ │ ├── mlx5_glue.c │ │ │ ├── mlx5_glue.h │ │ │ ├── mlx5_mac.c │ │ │ ├── mlx5_mr.c │ │ │ ├── mlx5_prm.h │ │ │ ├── mlx5_rss.c │ │ │ ├── mlx5_rxmode.c │ │ │ ├── mlx5_rxq.c │ │ │ ├── mlx5_rxtx.c │ │ │ ├── mlx5_rxtx.h │ │ │ ├── mlx5_rxtx_vec.c │ │ │ ├── mlx5_rxtx_vec.h │ │ │ ├── mlx5_rxtx_vec_neon.h │ │ │ ├── mlx5_rxtx_vec_sse.h │ │ │ ├── mlx5_socket.c │ │ │ ├── mlx5_stats.c │ │ │ ├── mlx5_trigger.c │ │ │ ├── mlx5_txq.c │ │ │ ├── mlx5_utils.h │ │ │ ├── mlx5_vlan.c │ │ │ └── rte_pmd_mlx5_version.map │ │ ├── mrvl │ │ │ ├── Makefile │ │ │ ├── mrvl_ethdev.c │ │ │ ├── mrvl_ethdev.h │ │ │ ├── mrvl_qos.c │ │ │ ├── mrvl_qos.h │ │ │ └── rte_pmd_mrvl_version.map │ │ ├── nfp │ │ │ ├── Makefile │ │ │ ├── nfp_net.c │ │ │ ├── nfp_net_ctrl.h │ │ │ ├── nfp_net_eth.h │ │ │ ├── nfp_net_logs.h │ │ │ ├── nfp_net_pmd.h │ │ │ ├── nfp_nfpu.c │ │ │ ├── nfp_nfpu.h │ │ │ ├── nfp_nspu.c │ │ │ ├── nfp_nspu.h │ │ │ └── rte_pmd_nfp_version.map │ │ ├── null │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_eth_null.c │ │ │ └── rte_pmd_null_version.map │ │ ├── octeontx │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── meson.build │ │ │ │ ├── octeontx_bgx.c │ │ │ │ ├── octeontx_bgx.h │ │ │ │ ├── octeontx_io.h │ │ │ │ ├── octeontx_pki_var.h │ │ │ │ ├── octeontx_pkivf.c │ │ │ │ ├── octeontx_pkivf.h │ │ │ │ ├── octeontx_pkovf.c │ │ │ │ └── octeontx_pkovf.h │ │ │ ├── meson.build │ │ │ ├── octeontx_ethdev.c │ │ │ ├── octeontx_ethdev.h │ │ │ ├── octeontx_logs.h │ │ │ ├── octeontx_rxtx.c │ │ │ ├── octeontx_rxtx.h │ │ │ └── rte_pmd_octeontx_version.map │ │ ├── pcap │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_eth_pcap.c │ │ │ └── rte_pmd_pcap_version.map │ │ ├── qede │ │ │ ├── LICENSE.qede_pmd │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── bcm_osal.c │ │ │ │ ├── bcm_osal.h │ │ │ │ ├── common_hsi.h │ │ │ │ ├── ecore.h │ │ │ │ ├── ecore_attn_values.h │ │ │ │ ├── ecore_chain.h │ │ │ │ ├── ecore_cxt.c │ │ │ │ ├── ecore_cxt.h │ │ │ │ ├── ecore_cxt_api.h │ │ │ │ ├── ecore_dcbx.c │ │ │ │ ├── ecore_dcbx.h │ │ │ │ ├── ecore_dcbx_api.h │ │ │ │ ├── ecore_dev.c │ │ │ │ ├── ecore_dev_api.h │ │ │ │ ├── ecore_gtt_reg_addr.h │ │ │ │ ├── ecore_gtt_values.h │ │ │ │ ├── ecore_hsi_common.h │ │ │ │ ├── ecore_hsi_debug_tools.h │ │ │ │ ├── ecore_hsi_eth.h │ │ │ │ ├── ecore_hsi_init_func.h │ │ │ │ ├── ecore_hsi_init_tool.h │ │ │ │ ├── ecore_hw.c │ │ │ │ ├── ecore_hw.h │ │ │ │ ├── ecore_hw_defs.h │ │ │ │ ├── ecore_init_fw_funcs.c │ │ │ │ ├── ecore_init_fw_funcs.h │ │ │ │ ├── ecore_init_ops.c │ │ │ │ ├── ecore_init_ops.h │ │ │ │ ├── ecore_int.c │ │ │ │ ├── ecore_int.h │ │ │ │ ├── ecore_int_api.h │ │ │ │ ├── ecore_iov_api.h │ │ │ │ ├── ecore_iro.h │ │ │ │ ├── ecore_iro_values.h │ │ │ │ ├── ecore_l2.c │ │ │ │ ├── ecore_l2.h │ │ │ │ ├── ecore_l2_api.h │ │ │ │ ├── ecore_mcp.c │ │ │ │ ├── ecore_mcp.h │ │ │ │ ├── ecore_mcp_api.h │ │ │ │ ├── ecore_mng_tlv.c │ │ │ │ ├── ecore_proto_if.h │ │ │ │ ├── ecore_rt_defs.h │ │ │ │ ├── ecore_sp_api.h │ │ │ │ ├── ecore_sp_commands.c │ │ │ │ ├── ecore_sp_commands.h │ │ │ │ ├── ecore_spq.c │ │ │ │ ├── ecore_spq.h │ │ │ │ ├── ecore_sriov.c │ │ │ │ ├── ecore_sriov.h │ │ │ │ ├── ecore_status.h │ │ │ │ ├── ecore_utils.h │ │ │ │ ├── ecore_vf.c │ │ │ │ ├── ecore_vf.h │ │ │ │ ├── ecore_vf_api.h │ │ │ │ ├── ecore_vfpf_if.h │ │ │ │ ├── eth_common.h │ │ │ │ ├── mcp_public.h │ │ │ │ ├── nvm_cfg.h │ │ │ │ └── reg_addr.h │ │ │ ├── qede_ethdev.c │ │ │ ├── qede_ethdev.h │ │ │ ├── qede_fdir.c │ │ │ ├── qede_if.h │ │ │ ├── qede_logs.h │ │ │ ├── qede_main.c │ │ │ ├── qede_rxtx.c │ │ │ ├── qede_rxtx.h │ │ │ └── rte_pmd_qede_version.map │ │ ├── ring │ │ │ ├── Makefile │ │ │ ├── meson.build │ │ │ ├── rte_eth_ring.c │ │ │ ├── rte_eth_ring.h │ │ │ └── rte_pmd_ring_version.map │ │ ├── sfc │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── README │ │ │ │ ├── ef10_ev.c │ │ │ │ ├── ef10_filter.c │ │ │ │ ├── ef10_impl.h │ │ │ │ ├── ef10_intr.c │ │ │ │ ├── ef10_mac.c │ │ │ │ ├── ef10_mcdi.c │ │ │ │ ├── ef10_nic.c │ │ │ │ ├── ef10_nvram.c │ │ │ │ ├── ef10_phy.c │ │ │ │ ├── ef10_rx.c │ │ │ │ ├── ef10_tlv_layout.h │ │ │ │ ├── ef10_tx.c │ │ │ │ ├── ef10_vpd.c │ │ │ │ ├── efx.h │ │ │ │ ├── efx_bootcfg.c │ │ │ │ ├── efx_check.h │ │ │ │ ├── efx_crc32.c │ │ │ │ ├── efx_ev.c │ │ │ │ ├── efx_filter.c │ │ │ │ ├── efx_hash.c │ │ │ │ ├── efx_impl.h │ │ │ │ ├── efx_intr.c │ │ │ │ ├── efx_lic.c │ │ │ │ ├── efx_mac.c │ │ │ │ ├── efx_mcdi.c │ │ │ │ ├── efx_mcdi.h │ │ │ │ ├── efx_mon.c │ │ │ │ ├── efx_nic.c │ │ │ │ ├── efx_nvram.c │ │ │ │ ├── efx_phy.c │ │ │ │ ├── efx_phy_ids.h │ │ │ │ ├── efx_port.c │ │ │ │ ├── efx_regs.h │ │ │ │ ├── efx_regs_ef10.h │ │ │ │ ├── efx_regs_mcdi.h │ │ │ │ ├── efx_regs_pci.h │ │ │ │ ├── efx_rx.c │ │ │ │ ├── efx_sram.c │ │ │ │ ├── efx_tunnel.c │ │ │ │ ├── efx_tx.c │ │ │ │ ├── efx_types.h │ │ │ │ ├── efx_vpd.c │ │ │ │ ├── hunt_impl.h │ │ │ │ ├── hunt_nic.c │ │ │ │ ├── mcdi_mon.c │ │ │ │ ├── mcdi_mon.h │ │ │ │ ├── medford_impl.h │ │ │ │ ├── medford_nic.c │ │ │ │ ├── meson.build │ │ │ │ ├── siena_flash.h │ │ │ │ ├── siena_impl.h │ │ │ │ ├── siena_mac.c │ │ │ │ ├── siena_mcdi.c │ │ │ │ ├── siena_nic.c │ │ │ │ ├── siena_nvram.c │ │ │ │ ├── siena_phy.c │ │ │ │ ├── siena_sram.c │ │ │ │ └── siena_vpd.c │ │ │ ├── efsys.h │ │ │ ├── meson.build │ │ │ ├── rte_pmd_sfc_version.map │ │ │ ├── sfc.c │ │ │ ├── sfc.h │ │ │ ├── sfc_debug.h │ │ │ ├── sfc_dp.c │ │ │ ├── sfc_dp.h │ │ │ ├── sfc_dp_rx.h │ │ │ ├── sfc_dp_tx.h │ │ │ ├── sfc_ef10.h │ │ │ ├── sfc_ef10_rx.c │ │ │ ├── sfc_ef10_tx.c │ │ │ ├── sfc_ethdev.c │ │ │ ├── sfc_ev.c │ │ │ ├── sfc_ev.h │ │ │ ├── sfc_filter.c │ │ │ ├── sfc_filter.h │ │ │ ├── sfc_flow.c │ │ │ ├── sfc_flow.h │ │ │ ├── sfc_intr.c │ │ │ ├── sfc_kvargs.c │ │ │ ├── sfc_kvargs.h │ │ │ ├── sfc_log.h │ │ │ ├── sfc_mcdi.c │ │ │ ├── sfc_port.c │ │ │ ├── sfc_rx.c │ │ │ ├── sfc_rx.h │ │ │ ├── sfc_tso.c │ │ │ ├── sfc_tweak.h │ │ │ ├── sfc_tx.c │ │ │ └── sfc_tx.h │ │ ├── softnic │ │ │ ├── Makefile │ │ │ ├── rte_eth_softnic.c │ │ │ ├── rte_eth_softnic.h │ │ │ ├── rte_eth_softnic_internals.h │ │ │ ├── rte_eth_softnic_tm.c │ │ │ └── rte_pmd_eth_softnic_version.map │ │ ├── szedata2 │ │ │ ├── Makefile │ │ │ ├── rte_eth_szedata2.c │ │ │ ├── rte_eth_szedata2.h │ │ │ ├── rte_pmd_szedata2_version.map │ │ │ ├── szedata2_iobuf.c │ │ │ └── szedata2_iobuf.h │ │ ├── tap │ │ │ ├── Makefile │ │ │ ├── rte_eth_tap.c │ │ │ ├── rte_eth_tap.h │ │ │ ├── rte_pmd_tap_version.map │ │ │ ├── tap_bpf.h │ │ │ ├── tap_bpf_api.c │ │ │ ├── tap_bpf_insns.h │ │ │ ├── tap_bpf_program.c │ │ │ ├── tap_flow.c │ │ │ ├── tap_flow.h │ │ │ ├── tap_intr.c │ │ │ ├── tap_netlink.c │ │ │ ├── tap_netlink.h │ │ │ ├── tap_rss.h │ │ │ ├── tap_tcmsgs.c │ │ │ └── tap_tcmsgs.h │ │ ├── thunderx │ │ │ ├── Makefile │ │ │ ├── base │ │ │ │ ├── meson.build │ │ │ │ ├── nicvf_bsvf.c │ │ │ │ ├── nicvf_bsvf.h │ │ │ │ ├── nicvf_hw.c │ │ │ │ ├── nicvf_hw.h │ │ │ │ ├── nicvf_hw_defs.h │ │ │ │ ├── nicvf_mbox.c │ │ │ │ ├── nicvf_mbox.h │ │ │ │ └── nicvf_plat.h │ │ │ ├── meson.build │ │ │ ├── nicvf_ethdev.c │ │ │ ├── nicvf_ethdev.h │ │ │ ├── nicvf_logs.h │ │ │ ├── nicvf_rxtx.c │ │ │ ├── nicvf_rxtx.h │ │ │ ├── nicvf_struct.h │ │ │ ├── nicvf_svf.c │ │ │ ├── nicvf_svf.h │ │ │ └── rte_pmd_thunderx_version.map │ │ ├── vdev_netvsc │ │ │ ├── Makefile │ │ │ ├── rte_pmd_vdev_netvsc_version.map │ │ │ └── vdev_netvsc.c │ │ ├── vhost │ │ │ ├── Makefile │ │ │ ├── rte_eth_vhost.c │ │ │ ├── rte_eth_vhost.h │ │ │ └── rte_pmd_vhost_version.map │ │ ├── virtio │ │ │ ├── Makefile │ │ │ ├── rte_pmd_virtio_version.map │ │ │ ├── virtio_ethdev.c │ │ │ ├── virtio_ethdev.h │ │ │ ├── virtio_logs.h │ │ │ ├── virtio_pci.c │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rxtx.c │ │ │ ├── virtio_rxtx.h │ │ │ ├── virtio_rxtx_simple.c │ │ │ ├── virtio_rxtx_simple.h │ │ │ ├── virtio_rxtx_simple_neon.c │ │ │ ├── virtio_rxtx_simple_sse.c │ │ │ ├── virtio_user │ │ │ │ ├── vhost.h │ │ │ │ ├── vhost_kernel.c │ │ │ │ ├── vhost_kernel_tap.c │ │ │ │ ├── vhost_kernel_tap.h │ │ │ │ ├── vhost_user.c │ │ │ │ ├── virtio_user_dev.c │ │ │ │ └── virtio_user_dev.h │ │ │ ├── virtio_user_ethdev.c │ │ │ ├── virtqueue.c │ │ │ └── virtqueue.h │ │ └── vmxnet3 │ │ │ ├── Makefile │ │ │ ├── base │ │ │ ├── README │ │ │ ├── upt1_defs.h │ │ │ ├── vmware_pack_begin.h │ │ │ ├── vmware_pack_end.h │ │ │ ├── vmxnet3_defs.h │ │ │ └── vmxnet3_osdep.h │ │ │ ├── rte_pmd_vmxnet3_version.map │ │ │ ├── vmxnet3_ethdev.c │ │ │ ├── vmxnet3_ethdev.h │ │ │ ├── vmxnet3_logs.h │ │ │ ├── vmxnet3_ring.h │ │ │ └── vmxnet3_rxtx.c │ └── raw │ │ ├── Makefile │ │ └── skeleton_rawdev │ │ ├── Makefile │ │ ├── rte_pmd_skeleton_rawdev_version.map │ │ ├── skeleton_rawdev.c │ │ ├── skeleton_rawdev.h │ │ └── skeleton_rawdev_test.c ├── examples │ ├── Makefile │ ├── bbdev_app │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── bond │ │ ├── Makefile │ │ ├── main.c │ │ ├── main.h │ │ └── meson.build │ ├── cmdline │ │ ├── Makefile │ │ ├── commands.c │ │ ├── commands.h │ │ ├── main.c │ │ ├── meson.build │ │ ├── parse_obj_list.c │ │ └── parse_obj_list.h │ ├── distributor │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── ethtool │ │ ├── Makefile │ │ ├── ethtool-app │ │ │ ├── Makefile │ │ │ ├── ethapp.c │ │ │ ├── ethapp.h │ │ │ └── main.c │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── rte_ethtool.c │ │ │ └── rte_ethtool.h │ ├── eventdev_pipeline │ │ ├── Makefile │ │ ├── main.c │ │ ├── meson.build │ │ ├── pipeline_common.h │ │ ├── pipeline_worker_generic.c │ │ └── pipeline_worker_tx.c │ ├── exception_path │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── flow_classify │ │ ├── Makefile │ │ ├── flow_classify.c │ │ ├── ipv4_rules_file.txt │ │ └── meson.build │ ├── flow_filtering │ │ ├── Makefile │ │ ├── flow_blocks.c │ │ ├── main.c │ │ └── meson.build │ ├── helloworld │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── ip_fragmentation │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── ip_pipeline │ │ ├── Makefile │ │ ├── app.h │ │ ├── config │ │ │ ├── action.cfg │ │ │ ├── action.sh │ │ │ ├── action.txt │ │ │ ├── diagram-generator.py │ │ │ ├── edge_router_downstream.cfg │ │ │ ├── edge_router_downstream.sh │ │ │ ├── edge_router_upstream.cfg │ │ │ ├── edge_router_upstream.sh │ │ │ ├── firewall.cfg │ │ │ ├── firewall.sh │ │ │ ├── firewall.txt │ │ │ ├── flow.cfg │ │ │ ├── flow.sh │ │ │ ├── flow.txt │ │ │ ├── ip_pipeline.cfg │ │ │ ├── ip_pipeline.sh │ │ │ ├── kni.cfg │ │ │ ├── l2fwd.cfg │ │ │ ├── l3fwd.cfg │ │ │ ├── l3fwd.sh │ │ │ ├── l3fwd_arp.cfg │ │ │ ├── l3fwd_arp.sh │ │ │ ├── network_layers.cfg │ │ │ ├── network_layers.sh │ │ │ ├── pipeline-to-core-mapping.py │ │ │ ├── tap.cfg │ │ │ └── tm_profile.cfg │ │ ├── config_check.c │ │ ├── config_parse.c │ │ ├── config_parse_tm.c │ │ ├── cpu_core_map.c │ │ ├── cpu_core_map.h │ │ ├── init.c │ │ ├── main.c │ │ ├── meson.build │ │ ├── parser.c │ │ ├── parser.h │ │ ├── pipeline.h │ │ ├── pipeline │ │ │ ├── hash_func.h │ │ │ ├── hash_func_arm64.h │ │ │ ├── pipeline_actions_common.h │ │ │ ├── pipeline_common_be.c │ │ │ ├── pipeline_common_be.h │ │ │ ├── pipeline_common_fe.c │ │ │ ├── pipeline_common_fe.h │ │ │ ├── pipeline_firewall.c │ │ │ ├── pipeline_firewall.h │ │ │ ├── pipeline_firewall_be.c │ │ │ ├── pipeline_firewall_be.h │ │ │ ├── pipeline_flow_actions.c │ │ │ ├── pipeline_flow_actions.h │ │ │ ├── pipeline_flow_actions_be.c │ │ │ ├── pipeline_flow_actions_be.h │ │ │ ├── pipeline_flow_classification.c │ │ │ ├── pipeline_flow_classification.h │ │ │ ├── pipeline_flow_classification_be.c │ │ │ ├── pipeline_flow_classification_be.h │ │ │ ├── pipeline_master.c │ │ │ ├── pipeline_master.h │ │ │ ├── pipeline_master_be.c │ │ │ ├── pipeline_master_be.h │ │ │ ├── pipeline_passthrough.c │ │ │ ├── pipeline_passthrough.h │ │ │ ├── pipeline_passthrough_be.c │ │ │ ├── pipeline_passthrough_be.h │ │ │ ├── pipeline_routing.c │ │ │ ├── pipeline_routing.h │ │ │ ├── pipeline_routing_be.c │ │ │ └── pipeline_routing_be.h │ │ ├── pipeline_be.h │ │ ├── thread.c │ │ ├── thread.h │ │ ├── thread_fe.c │ │ └── thread_fe.h │ ├── ip_reassembly │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── ipsec-secgw │ │ ├── Makefile │ │ ├── ep0.cfg │ │ ├── ep1.cfg │ │ ├── esp.c │ │ ├── esp.h │ │ ├── ipip.h │ │ ├── ipsec-secgw.c │ │ ├── ipsec.c │ │ ├── ipsec.h │ │ ├── meson.build │ │ ├── parser.c │ │ ├── parser.h │ │ ├── rt.c │ │ ├── sa.c │ │ ├── sp4.c │ │ └── sp6.c │ ├── ipv4_multicast │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── kni │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l2fwd-cat │ │ ├── Makefile │ │ ├── cat.c │ │ ├── cat.h │ │ ├── l2fwd-cat.c │ │ └── meson.build │ ├── l2fwd-crypto │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l2fwd-jobstats │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l2fwd-keepalive │ │ ├── Makefile │ │ ├── ka-agent │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── main.c │ │ ├── meson.build │ │ ├── shm.c │ │ └── shm.h │ ├── l2fwd │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l3fwd-acl │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l3fwd-power │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l3fwd-vf │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── l3fwd │ │ ├── Makefile │ │ ├── l3fwd.h │ │ ├── l3fwd_altivec.h │ │ ├── l3fwd_common.h │ │ ├── l3fwd_em.c │ │ ├── l3fwd_em.h │ │ ├── l3fwd_em_hlm.h │ │ ├── l3fwd_em_hlm_neon.h │ │ ├── l3fwd_em_hlm_sse.h │ │ ├── l3fwd_em_sequential.h │ │ ├── l3fwd_lpm.c │ │ ├── l3fwd_lpm.h │ │ ├── l3fwd_lpm_altivec.h │ │ ├── l3fwd_lpm_neon.h │ │ ├── l3fwd_lpm_sse.h │ │ ├── l3fwd_neon.h │ │ ├── l3fwd_sse.h │ │ ├── main.c │ │ └── meson.build │ ├── link_status_interrupt │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── load_balancer │ │ ├── Makefile │ │ ├── config.c │ │ ├── init.c │ │ ├── main.c │ │ ├── main.h │ │ ├── meson.build │ │ └── runtime.c │ ├── meson.build │ ├── multi_process │ │ ├── Makefile │ │ ├── client_server_mp │ │ │ ├── Makefile │ │ │ ├── mp_client │ │ │ │ ├── Makefile │ │ │ │ └── client.c │ │ │ ├── mp_server │ │ │ │ ├── Makefile │ │ │ │ ├── args.c │ │ │ │ ├── args.h │ │ │ │ ├── init.c │ │ │ │ ├── init.h │ │ │ │ └── main.c │ │ │ └── shared │ │ │ │ └── common.h │ │ ├── l2fwd_fork │ │ │ ├── Makefile │ │ │ ├── flib.c │ │ │ ├── flib.h │ │ │ └── main.c │ │ ├── simple_mp │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── mp_commands.c │ │ │ └── mp_commands.h │ │ └── symmetric_mp │ │ │ ├── Makefile │ │ │ └── main.c │ ├── netmap_compat │ │ ├── Makefile │ │ ├── bridge │ │ │ ├── Makefile │ │ │ └── bridge.c │ │ ├── lib │ │ │ ├── compat_netmap.c │ │ │ └── compat_netmap.h │ │ └── netmap │ │ │ ├── netmap.h │ │ │ └── netmap_user.h │ ├── packet_ordering │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── performance-thread │ │ ├── Makefile │ │ ├── common │ │ │ ├── arch │ │ │ │ ├── arm64 │ │ │ │ │ ├── ctx.c │ │ │ │ │ ├── ctx.h │ │ │ │ │ └── stack.h │ │ │ │ └── x86 │ │ │ │ │ ├── ctx.c │ │ │ │ │ ├── ctx.h │ │ │ │ │ └── stack.h │ │ │ ├── common.mk │ │ │ ├── lthread.c │ │ │ ├── lthread.h │ │ │ ├── lthread_api.h │ │ │ ├── lthread_cond.c │ │ │ ├── lthread_cond.h │ │ │ ├── lthread_diag.c │ │ │ ├── lthread_diag.h │ │ │ ├── lthread_diag_api.h │ │ │ ├── lthread_int.h │ │ │ ├── lthread_mutex.c │ │ │ ├── lthread_mutex.h │ │ │ ├── lthread_objcache.h │ │ │ ├── lthread_pool.h │ │ │ ├── lthread_queue.h │ │ │ ├── lthread_sched.c │ │ │ ├── lthread_sched.h │ │ │ ├── lthread_timer.h │ │ │ ├── lthread_tls.c │ │ │ └── lthread_tls.h │ │ ├── l3fwd-thread │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ └── test.sh │ │ └── pthread_shim │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── pthread_shim.c │ │ │ └── pthread_shim.h │ ├── ptpclient │ │ ├── Makefile │ │ ├── meson.build │ │ └── ptpclient.c │ ├── qos_meter │ │ ├── Makefile │ │ ├── main.c │ │ ├── main.h │ │ ├── meson.build │ │ ├── rte_policer.c │ │ └── rte_policer.h │ ├── qos_sched │ │ ├── Makefile │ │ ├── app_thread.c │ │ ├── args.c │ │ ├── cfg_file.c │ │ ├── cfg_file.h │ │ ├── cmdline.c │ │ ├── init.c │ │ ├── main.c │ │ ├── main.h │ │ ├── meson.build │ │ ├── profile.cfg │ │ ├── profile_ov.cfg │ │ └── stats.c │ ├── quota_watermark │ │ ├── Makefile │ │ ├── include │ │ │ └── conf.h │ │ ├── qw │ │ │ ├── Makefile │ │ │ ├── args.c │ │ │ ├── args.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ ├── main.c │ │ │ └── main.h │ │ └── qwctl │ │ │ ├── Makefile │ │ │ ├── commands.c │ │ │ ├── commands.h │ │ │ ├── qwctl.c │ │ │ └── qwctl.h │ ├── rxtx_callbacks │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── server_node_efd │ │ ├── Makefile │ │ ├── node │ │ │ ├── Makefile │ │ │ └── node.c │ │ ├── server │ │ │ ├── Makefile │ │ │ ├── args.c │ │ │ ├── args.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ └── main.c │ │ └── shared │ │ │ └── common.h │ ├── service_cores │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── skeleton │ │ ├── Makefile │ │ ├── basicfwd.c │ │ └── meson.build │ ├── tep_termination │ │ ├── Makefile │ │ ├── main.c │ │ ├── main.h │ │ ├── meson.build │ │ ├── vxlan.c │ │ ├── vxlan.h │ │ ├── vxlan_setup.c │ │ └── vxlan_setup.h │ ├── timer │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ ├── vhost │ │ ├── Makefile │ │ ├── main.c │ │ ├── main.h │ │ ├── meson.build │ │ └── virtio_net.c │ ├── vhost_scsi │ │ ├── Makefile │ │ ├── meson.build │ │ ├── scsi.c │ │ ├── scsi_spec.h │ │ ├── vhost_scsi.c │ │ └── vhost_scsi.h │ ├── vm_power_manager │ │ ├── Makefile │ │ ├── channel_manager.c │ │ ├── channel_manager.h │ │ ├── channel_monitor.c │ │ ├── channel_monitor.h │ │ ├── guest_cli │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── vm_power_cli_guest.c │ │ │ └── vm_power_cli_guest.h │ │ ├── main.c │ │ ├── power_manager.c │ │ ├── power_manager.h │ │ ├── vm_power_cli.c │ │ └── vm_power_cli.h │ ├── vmdq │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build │ └── vmdq_dcb │ │ ├── Makefile │ │ ├── main.c │ │ └── meson.build ├── lib │ ├── Makefile │ ├── librte_acl │ │ ├── Makefile │ │ ├── acl.h │ │ ├── acl_bld.c │ │ ├── acl_gen.c │ │ ├── acl_run.h │ │ ├── acl_run_altivec.c │ │ ├── acl_run_altivec.h │ │ ├── acl_run_avx2.c │ │ ├── acl_run_avx2.h │ │ ├── acl_run_neon.c │ │ ├── acl_run_neon.h │ │ ├── acl_run_scalar.c │ │ ├── acl_run_sse.c │ │ ├── acl_run_sse.h │ │ ├── acl_vect.h │ │ ├── meson.build │ │ ├── rte_acl.c │ │ ├── rte_acl.h │ │ ├── rte_acl_osdep.h │ │ ├── rte_acl_version.map │ │ ├── tb_mem.c │ │ └── tb_mem.h │ ├── librte_bbdev │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_bbdev.c │ │ ├── rte_bbdev.h │ │ ├── rte_bbdev_op.h │ │ ├── rte_bbdev_pmd.h │ │ └── rte_bbdev_version.map │ ├── librte_bitratestats │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_bitrate.c │ │ ├── rte_bitrate.h │ │ └── rte_bitratestats_version.map │ ├── librte_cfgfile │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_cfgfile.c │ │ ├── rte_cfgfile.h │ │ └── rte_cfgfile_version.map │ ├── librte_cmdline │ │ ├── Makefile │ │ ├── cmdline.c │ │ ├── cmdline.h │ │ ├── cmdline_cirbuf.c │ │ ├── cmdline_cirbuf.h │ │ ├── cmdline_parse.c │ │ ├── cmdline_parse.h │ │ ├── cmdline_parse_etheraddr.c │ │ ├── cmdline_parse_etheraddr.h │ │ ├── cmdline_parse_ipaddr.c │ │ ├── cmdline_parse_ipaddr.h │ │ ├── cmdline_parse_num.c │ │ ├── cmdline_parse_num.h │ │ ├── cmdline_parse_portlist.c │ │ ├── cmdline_parse_portlist.h │ │ ├── cmdline_parse_string.c │ │ ├── cmdline_parse_string.h │ │ ├── cmdline_rdline.c │ │ ├── cmdline_rdline.h │ │ ├── cmdline_socket.c │ │ ├── cmdline_socket.h │ │ ├── cmdline_vt100.c │ │ ├── cmdline_vt100.h │ │ ├── meson.build │ │ └── rte_cmdline_version.map │ ├── librte_compat │ │ ├── Makefile │ │ ├── meson.build │ │ └── rte_compat.h │ ├── librte_cryptodev │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_crypto.h │ │ ├── rte_crypto_sym.h │ │ ├── rte_cryptodev.c │ │ ├── rte_cryptodev.h │ │ ├── rte_cryptodev_pmd.c │ │ ├── rte_cryptodev_pmd.h │ │ └── rte_cryptodev_version.map │ ├── librte_distributor │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_distributor.c │ │ ├── rte_distributor.h │ │ ├── rte_distributor_match_generic.c │ │ ├── rte_distributor_match_sse.c │ │ ├── rte_distributor_private.h │ │ ├── rte_distributor_v1705.h │ │ ├── rte_distributor_v20.c │ │ ├── rte_distributor_v20.h │ │ └── rte_distributor_version.map │ ├── librte_eal │ │ ├── Makefile │ │ ├── bsdapp │ │ │ ├── BSDmakefile.meson │ │ │ ├── Makefile │ │ │ ├── contigmem │ │ │ │ ├── BSDmakefile │ │ │ │ ├── Makefile │ │ │ │ ├── contigmem.c │ │ │ │ └── meson.build │ │ │ ├── eal │ │ │ │ ├── Makefile │ │ │ │ ├── eal.c │ │ │ │ ├── eal_alarm.c │ │ │ │ ├── eal_debug.c │ │ │ │ ├── eal_hugepage_info.c │ │ │ │ ├── eal_interrupts.c │ │ │ │ ├── eal_lcore.c │ │ │ │ ├── eal_memory.c │ │ │ │ ├── eal_thread.c │ │ │ │ ├── eal_timer.c │ │ │ │ └── meson.build │ │ │ └── nic_uio │ │ │ │ ├── BSDmakefile │ │ │ │ ├── Makefile │ │ │ │ ├── meson.build │ │ │ │ └── nic_uio.c │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── arch │ │ │ │ ├── arm │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── rte_cpuflags.c │ │ │ │ │ ├── rte_cycles.c │ │ │ │ │ └── rte_hypervisor.c │ │ │ │ ├── ppc_64 │ │ │ │ │ ├── rte_cpuflags.c │ │ │ │ │ ├── rte_cycles.c │ │ │ │ │ └── rte_hypervisor.c │ │ │ │ └── x86 │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── rte_cpuflags.c │ │ │ │ │ ├── rte_cpuid.h │ │ │ │ │ ├── rte_cycles.c │ │ │ │ │ ├── rte_hypervisor.c │ │ │ │ │ ├── rte_memcpy.c │ │ │ │ │ └── rte_spinlock.c │ │ │ ├── eal_common_bus.c │ │ │ ├── eal_common_cpuflags.c │ │ │ ├── eal_common_dev.c │ │ │ ├── eal_common_devargs.c │ │ │ ├── eal_common_errno.c │ │ │ ├── eal_common_hexdump.c │ │ │ ├── eal_common_hypervisor.c │ │ │ ├── eal_common_launch.c │ │ │ ├── eal_common_lcore.c │ │ │ ├── eal_common_log.c │ │ │ ├── eal_common_memory.c │ │ │ ├── eal_common_memzone.c │ │ │ ├── eal_common_options.c │ │ │ ├── eal_common_proc.c │ │ │ ├── eal_common_string_fns.c │ │ │ ├── eal_common_tailqs.c │ │ │ ├── eal_common_thread.c │ │ │ ├── eal_common_timer.c │ │ │ ├── eal_filesystem.h │ │ │ ├── eal_hugepages.h │ │ │ ├── eal_internal_cfg.h │ │ │ ├── eal_options.h │ │ │ ├── eal_private.h │ │ │ ├── eal_thread.h │ │ │ ├── include │ │ │ │ ├── arch │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ ├── rte_atomic.h │ │ │ │ │ │ ├── rte_atomic_32.h │ │ │ │ │ │ ├── rte_atomic_64.h │ │ │ │ │ │ ├── rte_byteorder.h │ │ │ │ │ │ ├── rte_cpuflags.h │ │ │ │ │ │ ├── rte_cpuflags_32.h │ │ │ │ │ │ ├── rte_cpuflags_64.h │ │ │ │ │ │ ├── rte_cycles.h │ │ │ │ │ │ ├── rte_cycles_32.h │ │ │ │ │ │ ├── rte_cycles_64.h │ │ │ │ │ │ ├── rte_io.h │ │ │ │ │ │ ├── rte_io_64.h │ │ │ │ │ │ ├── rte_memcpy.h │ │ │ │ │ │ ├── rte_memcpy_32.h │ │ │ │ │ │ ├── rte_memcpy_64.h │ │ │ │ │ │ ├── rte_pause.h │ │ │ │ │ │ ├── rte_pause_32.h │ │ │ │ │ │ ├── rte_pause_64.h │ │ │ │ │ │ ├── rte_prefetch.h │ │ │ │ │ │ ├── rte_prefetch_32.h │ │ │ │ │ │ ├── rte_prefetch_64.h │ │ │ │ │ │ ├── rte_rwlock.h │ │ │ │ │ │ ├── rte_spinlock.h │ │ │ │ │ │ └── rte_vect.h │ │ │ │ │ ├── ppc_64 │ │ │ │ │ │ ├── rte_atomic.h │ │ │ │ │ │ ├── rte_byteorder.h │ │ │ │ │ │ ├── rte_cpuflags.h │ │ │ │ │ │ ├── rte_cycles.h │ │ │ │ │ │ ├── rte_io.h │ │ │ │ │ │ ├── rte_memcpy.h │ │ │ │ │ │ ├── rte_pause.h │ │ │ │ │ │ ├── rte_prefetch.h │ │ │ │ │ │ ├── rte_rwlock.h │ │ │ │ │ │ ├── rte_spinlock.h │ │ │ │ │ │ └── rte_vect.h │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ ├── rte_atomic.h │ │ │ │ │ │ ├── rte_atomic_32.h │ │ │ │ │ │ ├── rte_atomic_64.h │ │ │ │ │ │ ├── rte_byteorder.h │ │ │ │ │ │ ├── rte_byteorder_32.h │ │ │ │ │ │ ├── rte_byteorder_64.h │ │ │ │ │ │ ├── rte_cpuflags.h │ │ │ │ │ │ ├── rte_cycles.h │ │ │ │ │ │ ├── rte_io.h │ │ │ │ │ │ ├── rte_memcpy.h │ │ │ │ │ │ ├── rte_pause.h │ │ │ │ │ │ ├── rte_prefetch.h │ │ │ │ │ │ ├── rte_rtm.h │ │ │ │ │ │ ├── rte_rwlock.h │ │ │ │ │ │ ├── rte_spinlock.h │ │ │ │ │ │ └── rte_vect.h │ │ │ │ ├── generic │ │ │ │ │ ├── rte_atomic.h │ │ │ │ │ ├── rte_byteorder.h │ │ │ │ │ ├── rte_cpuflags.h │ │ │ │ │ ├── rte_cycles.h │ │ │ │ │ ├── rte_io.h │ │ │ │ │ ├── rte_memcpy.h │ │ │ │ │ ├── rte_pause.h │ │ │ │ │ ├── rte_prefetch.h │ │ │ │ │ ├── rte_rwlock.h │ │ │ │ │ ├── rte_spinlock.h │ │ │ │ │ └── rte_vect.h │ │ │ │ ├── rte_alarm.h │ │ │ │ ├── rte_bitmap.h │ │ │ │ ├── rte_branch_prediction.h │ │ │ │ ├── rte_bus.h │ │ │ │ ├── rte_common.h │ │ │ │ ├── rte_debug.h │ │ │ │ ├── rte_dev.h │ │ │ │ ├── rte_devargs.h │ │ │ │ ├── rte_eal.h │ │ │ │ ├── rte_eal_interrupts.h │ │ │ │ ├── rte_eal_memconfig.h │ │ │ │ ├── rte_errno.h │ │ │ │ ├── rte_hexdump.h │ │ │ │ ├── rte_hypervisor.h │ │ │ │ ├── rte_interrupts.h │ │ │ │ ├── rte_keepalive.h │ │ │ │ ├── rte_launch.h │ │ │ │ ├── rte_lcore.h │ │ │ │ ├── rte_log.h │ │ │ │ ├── rte_malloc.h │ │ │ │ ├── rte_malloc_heap.h │ │ │ │ ├── rte_memory.h │ │ │ │ ├── rte_memzone.h │ │ │ │ ├── rte_pci_dev_feature_defs.h │ │ │ │ ├── rte_pci_dev_features.h │ │ │ │ ├── rte_per_lcore.h │ │ │ │ ├── rte_random.h │ │ │ │ ├── rte_reciprocal.h │ │ │ │ ├── rte_service.h │ │ │ │ ├── rte_service_component.h │ │ │ │ ├── rte_string_fns.h │ │ │ │ ├── rte_tailq.h │ │ │ │ ├── rte_test.h │ │ │ │ ├── rte_time.h │ │ │ │ ├── rte_version.h │ │ │ │ └── rte_vfio.h │ │ │ ├── malloc_elem.c │ │ │ ├── malloc_elem.h │ │ │ ├── malloc_heap.c │ │ │ ├── malloc_heap.h │ │ │ ├── meson.build │ │ │ ├── rte_keepalive.c │ │ │ ├── rte_malloc.c │ │ │ ├── rte_reciprocal.c │ │ │ └── rte_service.c │ │ ├── linuxapp │ │ │ ├── Makefile │ │ │ ├── eal │ │ │ │ ├── Makefile │ │ │ │ ├── eal.c │ │ │ │ ├── eal_alarm.c │ │ │ │ ├── eal_debug.c │ │ │ │ ├── eal_hugepage_info.c │ │ │ │ ├── eal_interrupts.c │ │ │ │ ├── eal_lcore.c │ │ │ │ ├── eal_log.c │ │ │ │ ├── eal_memory.c │ │ │ │ ├── eal_thread.c │ │ │ │ ├── eal_timer.c │ │ │ │ ├── eal_vfio.c │ │ │ │ ├── eal_vfio.h │ │ │ │ ├── eal_vfio_mp_sync.c │ │ │ │ ├── include │ │ │ │ │ └── exec-env │ │ │ │ │ │ └── rte_kni_common.h │ │ │ │ └── meson.build │ │ │ ├── igb_uio │ │ │ │ ├── Kbuild │ │ │ │ ├── Makefile │ │ │ │ ├── compat.h │ │ │ │ ├── igb_uio.c │ │ │ │ └── meson.build │ │ │ └── kni │ │ │ │ ├── Makefile │ │ │ │ ├── compat.h │ │ │ │ ├── ethtool │ │ │ │ ├── README │ │ │ │ ├── igb │ │ │ │ │ ├── e1000_82575.c │ │ │ │ │ ├── e1000_82575.h │ │ │ │ │ ├── e1000_api.c │ │ │ │ │ ├── e1000_api.h │ │ │ │ │ ├── e1000_defines.h │ │ │ │ │ ├── e1000_hw.h │ │ │ │ │ ├── e1000_i210.c │ │ │ │ │ ├── e1000_i210.h │ │ │ │ │ ├── e1000_mac.c │ │ │ │ │ ├── e1000_mac.h │ │ │ │ │ ├── e1000_manage.c │ │ │ │ │ ├── e1000_manage.h │ │ │ │ │ ├── e1000_mbx.c │ │ │ │ │ ├── e1000_mbx.h │ │ │ │ │ ├── e1000_nvm.c │ │ │ │ │ ├── e1000_nvm.h │ │ │ │ │ ├── e1000_osdep.h │ │ │ │ │ ├── e1000_phy.c │ │ │ │ │ ├── e1000_phy.h │ │ │ │ │ ├── e1000_regs.h │ │ │ │ │ ├── igb.h │ │ │ │ │ ├── igb_ethtool.c │ │ │ │ │ ├── igb_main.c │ │ │ │ │ ├── igb_param.c │ │ │ │ │ ├── igb_regtest.h │ │ │ │ │ ├── igb_vmdq.c │ │ │ │ │ ├── igb_vmdq.h │ │ │ │ │ └── kcompat.h │ │ │ │ └── ixgbe │ │ │ │ │ ├── ixgbe.h │ │ │ │ │ ├── ixgbe_82598.c │ │ │ │ │ ├── ixgbe_82598.h │ │ │ │ │ ├── ixgbe_82599.c │ │ │ │ │ ├── ixgbe_82599.h │ │ │ │ │ ├── ixgbe_api.c │ │ │ │ │ ├── ixgbe_api.h │ │ │ │ │ ├── ixgbe_common.c │ │ │ │ │ ├── ixgbe_common.h │ │ │ │ │ ├── ixgbe_dcb.h │ │ │ │ │ ├── ixgbe_ethtool.c │ │ │ │ │ ├── ixgbe_fcoe.h │ │ │ │ │ ├── ixgbe_main.c │ │ │ │ │ ├── ixgbe_mbx.h │ │ │ │ │ ├── ixgbe_osdep.h │ │ │ │ │ ├── ixgbe_phy.c │ │ │ │ │ ├── ixgbe_phy.h │ │ │ │ │ ├── ixgbe_type.h │ │ │ │ │ ├── ixgbe_x540.c │ │ │ │ │ ├── ixgbe_x540.h │ │ │ │ │ ├── kcompat.c │ │ │ │ │ └── kcompat.h │ │ │ │ ├── kni_dev.h │ │ │ │ ├── kni_ethtool.c │ │ │ │ ├── kni_fifo.h │ │ │ │ ├── kni_misc.c │ │ │ │ └── kni_net.c │ │ ├── meson.build │ │ └── rte_eal_version.map │ ├── librte_efd │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_efd.c │ │ ├── rte_efd.h │ │ ├── rte_efd_arm64.h │ │ ├── rte_efd_version.map │ │ └── rte_efd_x86.h │ ├── librte_ether │ │ ├── Makefile │ │ ├── ethdev_profile.c │ │ ├── ethdev_profile.h │ │ ├── meson.build │ │ ├── rte_dev_info.h │ │ ├── rte_eth_ctrl.h │ │ ├── rte_ethdev.c │ │ ├── rte_ethdev.h │ │ ├── rte_ethdev_core.h │ │ ├── rte_ethdev_driver.h │ │ ├── rte_ethdev_pci.h │ │ ├── rte_ethdev_vdev.h │ │ ├── rte_ethdev_version.map │ │ ├── rte_flow.c │ │ ├── rte_flow.h │ │ ├── rte_flow_driver.h │ │ ├── rte_mtr.c │ │ ├── rte_mtr.h │ │ ├── rte_mtr_driver.h │ │ ├── rte_tm.c │ │ ├── rte_tm.h │ │ └── rte_tm_driver.h │ ├── librte_eventdev │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_event_eth_rx_adapter.c │ │ ├── rte_event_eth_rx_adapter.h │ │ ├── rte_event_ring.c │ │ ├── rte_event_ring.h │ │ ├── rte_eventdev.c │ │ ├── rte_eventdev.h │ │ ├── rte_eventdev_pmd.h │ │ ├── rte_eventdev_pmd_pci.h │ │ ├── rte_eventdev_pmd_vdev.h │ │ └── rte_eventdev_version.map │ ├── librte_flow_classify │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_flow_classify.c │ │ ├── rte_flow_classify.h │ │ ├── rte_flow_classify_parse.c │ │ ├── rte_flow_classify_parse.h │ │ └── rte_flow_classify_version.map │ ├── librte_gro │ │ ├── Makefile │ │ ├── gro_tcp4.c │ │ ├── gro_tcp4.h │ │ ├── gro_vxlan_tcp4.c │ │ ├── gro_vxlan_tcp4.h │ │ ├── meson.build │ │ ├── rte_gro.c │ │ ├── rte_gro.h │ │ └── rte_gro_version.map │ ├── librte_gso │ │ ├── Makefile │ │ ├── gso_common.c │ │ ├── gso_common.h │ │ ├── gso_tcp4.c │ │ ├── gso_tcp4.h │ │ ├── gso_tunnel_tcp4.c │ │ ├── gso_tunnel_tcp4.h │ │ ├── meson.build │ │ ├── rte_gso.c │ │ ├── rte_gso.h │ │ └── rte_gso_version.map │ ├── librte_hash │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_cmp_arm64.h │ │ ├── rte_cmp_x86.h │ │ ├── rte_crc_arm64.h │ │ ├── rte_cuckoo_hash.c │ │ ├── rte_cuckoo_hash.h │ │ ├── rte_cuckoo_hash_x86.h │ │ ├── rte_fbk_hash.c │ │ ├── rte_fbk_hash.h │ │ ├── rte_hash.h │ │ ├── rte_hash_crc.h │ │ ├── rte_hash_version.map │ │ ├── rte_jhash.h │ │ └── rte_thash.h │ ├── librte_ip_frag │ │ ├── Makefile │ │ ├── ip_frag_common.h │ │ ├── ip_frag_internal.c │ │ ├── meson.build │ │ ├── rte_ip_frag.h │ │ ├── rte_ip_frag_common.c │ │ ├── rte_ip_frag_version.map │ │ ├── rte_ipv4_fragmentation.c │ │ ├── rte_ipv4_reassembly.c │ │ ├── rte_ipv6_fragmentation.c │ │ └── rte_ipv6_reassembly.c │ ├── librte_jobstats │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_jobstats.c │ │ ├── rte_jobstats.h │ │ └── rte_jobstats_version.map │ ├── librte_kni │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_kni.c │ │ ├── rte_kni.h │ │ ├── rte_kni_fifo.h │ │ └── rte_kni_version.map │ ├── librte_kvargs │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_kvargs.c │ │ ├── rte_kvargs.h │ │ └── rte_kvargs_version.map │ ├── librte_latencystats │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_latencystats.c │ │ ├── rte_latencystats.h │ │ └── rte_latencystats_version.map │ ├── librte_lpm │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_lpm.c │ │ ├── rte_lpm.h │ │ ├── rte_lpm6.c │ │ ├── rte_lpm6.h │ │ ├── rte_lpm_altivec.h │ │ ├── rte_lpm_neon.h │ │ ├── rte_lpm_sse.h │ │ └── rte_lpm_version.map │ ├── librte_mbuf │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_mbuf.c │ │ ├── rte_mbuf.h │ │ ├── rte_mbuf_pool_ops.c │ │ ├── rte_mbuf_pool_ops.h │ │ ├── rte_mbuf_ptype.c │ │ ├── rte_mbuf_ptype.h │ │ └── rte_mbuf_version.map │ ├── librte_member │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_member.c │ │ ├── rte_member.h │ │ ├── rte_member_ht.c │ │ ├── rte_member_ht.h │ │ ├── rte_member_vbf.c │ │ ├── rte_member_vbf.h │ │ ├── rte_member_version.map │ │ └── rte_member_x86.h │ ├── librte_mempool │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_mempool.c │ │ ├── rte_mempool.h │ │ ├── rte_mempool_ops.c │ │ └── rte_mempool_version.map │ ├── librte_meter │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_meter.c │ │ ├── rte_meter.h │ │ └── rte_meter_version.map │ ├── librte_metrics │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_metrics.c │ │ ├── rte_metrics.h │ │ └── rte_metrics_version.map │ ├── librte_net │ │ ├── Makefile │ │ ├── meson.build │ │ ├── net_crc_neon.h │ │ ├── net_crc_sse.h │ │ ├── rte_arp.c │ │ ├── rte_arp.h │ │ ├── rte_esp.h │ │ ├── rte_ether.h │ │ ├── rte_gre.h │ │ ├── rte_icmp.h │ │ ├── rte_ip.h │ │ ├── rte_net.c │ │ ├── rte_net.h │ │ ├── rte_net_crc.c │ │ ├── rte_net_crc.h │ │ ├── rte_net_version.map │ │ ├── rte_sctp.h │ │ ├── rte_tcp.h │ │ └── rte_udp.h │ ├── librte_pci │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_pci.c │ │ ├── rte_pci.h │ │ └── rte_pci_version.map │ ├── librte_pdump │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_pdump.c │ │ ├── rte_pdump.h │ │ └── rte_pdump_version.map │ ├── librte_pipeline │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_pipeline.c │ │ ├── rte_pipeline.h │ │ └── rte_pipeline_version.map │ ├── librte_port │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_port.h │ │ ├── rte_port_ethdev.c │ │ ├── rte_port_ethdev.h │ │ ├── rte_port_fd.c │ │ ├── rte_port_fd.h │ │ ├── rte_port_frag.c │ │ ├── rte_port_frag.h │ │ ├── rte_port_kni.c │ │ ├── rte_port_kni.h │ │ ├── rte_port_ras.c │ │ ├── rte_port_ras.h │ │ ├── rte_port_ring.c │ │ ├── rte_port_ring.h │ │ ├── rte_port_sched.c │ │ ├── rte_port_sched.h │ │ ├── rte_port_source_sink.c │ │ ├── rte_port_source_sink.h │ │ └── rte_port_version.map │ ├── librte_power │ │ ├── Makefile │ │ ├── channel_commands.h │ │ ├── guest_channel.c │ │ ├── guest_channel.h │ │ ├── meson.build │ │ ├── power_acpi_cpufreq.c │ │ ├── power_acpi_cpufreq.h │ │ ├── power_common.h │ │ ├── power_kvm_vm.c │ │ ├── power_kvm_vm.h │ │ ├── rte_power.c │ │ ├── rte_power.h │ │ └── rte_power_version.map │ ├── librte_rawdev │ │ ├── Makefile │ │ ├── rte_rawdev.c │ │ ├── rte_rawdev.h │ │ ├── rte_rawdev_pmd.h │ │ └── rte_rawdev_version.map │ ├── librte_reorder │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_reorder.c │ │ ├── rte_reorder.h │ │ └── rte_reorder_version.map │ ├── librte_ring │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_ring.c │ │ ├── rte_ring.h │ │ ├── rte_ring_c11_mem.h │ │ ├── rte_ring_generic.h │ │ └── rte_ring_version.map │ ├── librte_sched │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_approx.c │ │ ├── rte_approx.h │ │ ├── rte_red.c │ │ ├── rte_red.h │ │ ├── rte_sched.c │ │ ├── rte_sched.h │ │ ├── rte_sched_common.h │ │ └── rte_sched_version.map │ ├── librte_security │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_security.c │ │ ├── rte_security.h │ │ ├── rte_security_driver.h │ │ └── rte_security_version.map │ ├── librte_table │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_lru.h │ │ ├── rte_lru_arm64.h │ │ ├── rte_lru_x86.h │ │ ├── rte_table.h │ │ ├── rte_table_acl.c │ │ ├── rte_table_acl.h │ │ ├── rte_table_array.c │ │ ├── rte_table_array.h │ │ ├── rte_table_hash.h │ │ ├── rte_table_hash_cuckoo.c │ │ ├── rte_table_hash_ext.c │ │ ├── rte_table_hash_key16.c │ │ ├── rte_table_hash_key32.c │ │ ├── rte_table_hash_key8.c │ │ ├── rte_table_hash_lru.c │ │ ├── rte_table_lpm.c │ │ ├── rte_table_lpm.h │ │ ├── rte_table_lpm_ipv6.c │ │ ├── rte_table_lpm_ipv6.h │ │ ├── rte_table_stub.c │ │ ├── rte_table_stub.h │ │ └── rte_table_version.map │ ├── librte_timer │ │ ├── Makefile │ │ ├── meson.build │ │ ├── rte_timer.c │ │ ├── rte_timer.h │ │ └── rte_timer_version.map │ ├── librte_vhost │ │ ├── Makefile │ │ ├── fd_man.c │ │ ├── fd_man.h │ │ ├── iotlb.c │ │ ├── iotlb.h │ │ ├── meson.build │ │ ├── rte_vhost.h │ │ ├── rte_vhost_version.map │ │ ├── socket.c │ │ ├── vhost.c │ │ ├── vhost.h │ │ ├── vhost_user.c │ │ ├── vhost_user.h │ │ └── virtio_net.c │ └── meson.build ├── license │ ├── README │ ├── bsd-3-clause.txt │ ├── exceptions.txt │ ├── gpl-2.0.txt │ └── lgpl-2.1.txt ├── meson.build ├── meson_options.txt ├── mk │ ├── arch │ │ ├── arm │ │ │ └── rte.vars.mk │ │ ├── arm64 │ │ │ └── rte.vars.mk │ │ ├── i686 │ │ │ └── rte.vars.mk │ │ ├── ppc_64 │ │ │ └── rte.vars.mk │ │ ├── x86_64 │ │ │ └── rte.vars.mk │ │ └── x86_x32 │ │ │ └── rte.vars.mk │ ├── exec-env │ │ ├── bsdapp │ │ │ ├── rte.app.mk │ │ │ └── rte.vars.mk │ │ └── linuxapp │ │ │ ├── rte.app.mk │ │ │ └── rte.vars.mk │ ├── internal │ │ ├── rte.build-post.mk │ │ ├── rte.build-pre.mk │ │ ├── rte.clean-post.mk │ │ ├── rte.clean-pre.mk │ │ ├── rte.compile-post.mk │ │ ├── rte.compile-pre.mk │ │ ├── rte.extvars.mk │ │ ├── rte.install-post.mk │ │ └── rte.install-pre.mk │ ├── machine │ │ ├── armv7a │ │ │ └── rte.vars.mk │ │ ├── armv8a │ │ │ └── rte.vars.mk │ │ ├── default │ │ │ └── rte.vars.mk │ │ ├── dpaa │ │ │ └── rte.vars.mk │ │ ├── dpaa2 │ │ │ └── rte.vars.mk │ │ ├── hsw │ │ │ └── rte.vars.mk │ │ ├── ivb │ │ │ └── rte.vars.mk │ │ ├── native │ │ │ └── rte.vars.mk │ │ ├── nhm │ │ │ └── rte.vars.mk │ │ ├── power8 │ │ │ └── rte.vars.mk │ │ ├── silvermont │ │ │ └── rte.vars.mk │ │ ├── snb │ │ │ └── rte.vars.mk │ │ ├── thunderx │ │ │ └── rte.vars.mk │ │ ├── wsm │ │ │ └── rte.vars.mk │ │ └── xgene1 │ │ │ └── rte.vars.mk │ ├── rte.app.mk │ ├── rte.bsdmodule.mk │ ├── rte.combinedlib.mk │ ├── rte.cpuflags.mk │ ├── rte.extapp.mk │ ├── rte.extlib.mk │ ├── rte.extobj.mk │ ├── rte.extshared.mk │ ├── rte.extsubdir.mk │ ├── rte.gnuconfigure.mk │ ├── rte.hostapp.mk │ ├── rte.hostlib.mk │ ├── rte.install.mk │ ├── rte.lib.mk │ ├── rte.module.mk │ ├── rte.obj.mk │ ├── rte.sdkbuild.mk │ ├── rte.sdkconfig.mk │ ├── rte.sdkdepdirs.mk │ ├── rte.sdkdoc.mk │ ├── rte.sdkexamples.mk │ ├── rte.sdkgcov.mk │ ├── rte.sdkinstall.mk │ ├── rte.sdkroot.mk │ ├── rte.sdktest.mk │ ├── rte.shared.mk │ ├── rte.subdir.mk │ ├── rte.vars.mk │ ├── target │ │ └── generic │ │ │ ├── rte.app.mk │ │ │ └── rte.vars.mk │ └── toolchain │ │ ├── clang │ │ ├── rte.toolchain-compat.mk │ │ └── rte.vars.mk │ │ ├── gcc │ │ ├── rte.toolchain-compat.mk │ │ └── rte.vars.mk │ │ └── icc │ │ ├── rte.toolchain-compat.mk │ │ └── rte.vars.mk ├── pkg │ └── dpdk.spec ├── test │ ├── Makefile │ ├── cmdline_test │ │ ├── Makefile │ │ ├── cmdline_test.c │ │ ├── cmdline_test.h │ │ ├── cmdline_test.py │ │ ├── cmdline_test_data.py │ │ └── commands.c │ ├── meson.build │ ├── test-acl │ │ ├── Makefile │ │ └── main.c │ ├── test-pipeline │ │ ├── Makefile │ │ ├── config.c │ │ ├── init.c │ │ ├── main.c │ │ ├── main.h │ │ ├── pipeline_acl.c │ │ ├── pipeline_hash.c │ │ ├── pipeline_lpm.c │ │ ├── pipeline_lpm_ipv6.c │ │ ├── pipeline_stub.c │ │ └── runtime.c │ └── test │ │ ├── Makefile │ │ ├── autotest.py │ │ ├── autotest_data.py │ │ ├── autotest_runner.py │ │ ├── autotest_test_funcs.py │ │ ├── commands.c │ │ ├── meson.build │ │ ├── packet_burst_generator.c │ │ ├── packet_burst_generator.h │ │ ├── process.h │ │ ├── resource.c │ │ ├── resource.h │ │ ├── test.c │ │ ├── test.h │ │ ├── test_acl.c │ │ ├── test_acl.h │ │ ├── test_alarm.c │ │ ├── test_atomic.c │ │ ├── test_barrier.c │ │ ├── test_bitmap.c │ │ ├── test_byteorder.c │ │ ├── test_cfgfile.c │ │ ├── test_cfgfiles │ │ └── etc │ │ │ ├── empty.ini │ │ │ ├── empty_key_value.ini │ │ │ ├── invalid_section.ini │ │ │ ├── line_too_long.ini │ │ │ ├── missing_section.ini │ │ │ ├── realloc_sections.ini │ │ │ ├── sample1.ini │ │ │ └── sample2.ini │ │ ├── test_cmdline.c │ │ ├── test_cmdline.h │ │ ├── test_cmdline_cirbuf.c │ │ ├── test_cmdline_etheraddr.c │ │ ├── test_cmdline_ipaddr.c │ │ ├── test_cmdline_lib.c │ │ ├── test_cmdline_num.c │ │ ├── test_cmdline_portlist.c │ │ ├── test_cmdline_string.c │ │ ├── test_common.c │ │ ├── test_cpuflags.c │ │ ├── test_crc.c │ │ ├── test_cryptodev.c │ │ ├── test_cryptodev.h │ │ ├── test_cryptodev_aead_test_vectors.h │ │ ├── test_cryptodev_aes_test_vectors.h │ │ ├── test_cryptodev_blockcipher.c │ │ ├── test_cryptodev_blockcipher.h │ │ ├── test_cryptodev_des_test_vectors.h │ │ ├── test_cryptodev_hash_test_vectors.h │ │ ├── test_cryptodev_hmac_test_vectors.h │ │ ├── test_cryptodev_kasumi_hash_test_vectors.h │ │ ├── test_cryptodev_kasumi_test_vectors.h │ │ ├── test_cryptodev_snow3g_hash_test_vectors.h │ │ ├── test_cryptodev_snow3g_test_vectors.h │ │ ├── test_cryptodev_zuc_test_vectors.h │ │ ├── test_cycles.c │ │ ├── test_debug.c │ │ ├── test_devargs.c │ │ ├── test_distributor.c │ │ ├── test_distributor_perf.c │ │ ├── test_eal_flags.c │ │ ├── test_eal_fs.c │ │ ├── test_efd.c │ │ ├── test_efd_perf.c │ │ ├── test_errno.c │ │ ├── test_event_eth_rx_adapter.c │ │ ├── test_event_ring.c │ │ ├── test_eventdev.c │ │ ├── test_flow_classify.c │ │ ├── test_flow_classify.h │ │ ├── test_func_reentrancy.c │ │ ├── test_hash.c │ │ ├── test_hash_functions.c │ │ ├── test_hash_multiwriter.c │ │ ├── test_hash_perf.c │ │ ├── test_hash_scaling.c │ │ ├── test_interrupts.c │ │ ├── test_kni.c │ │ ├── test_kvargs.c │ │ ├── test_link_bonding.c │ │ ├── test_link_bonding_mode4.c │ │ ├── test_link_bonding_rssconf.c │ │ ├── test_logs.c │ │ ├── test_lpm.c │ │ ├── test_lpm6.c │ │ ├── test_lpm6_data.h │ │ ├── test_lpm6_perf.c │ │ ├── test_lpm_perf.c │ │ ├── test_malloc.c │ │ ├── test_mbuf.c │ │ ├── test_member.c │ │ ├── test_member_perf.c │ │ ├── test_memcpy.c │ │ ├── test_memcpy_perf.c │ │ ├── test_memory.c │ │ ├── test_mempool.c │ │ ├── test_mempool_perf.c │ │ ├── test_memzone.c │ │ ├── test_meter.c │ │ ├── test_mp_secondary.c │ │ ├── test_per_lcore.c │ │ ├── test_pmd_perf.c │ │ ├── test_pmd_ring.c │ │ ├── test_pmd_ring_perf.c │ │ ├── test_power.c │ │ ├── test_power_acpi_cpufreq.c │ │ ├── test_power_kvm_vm.c │ │ ├── test_prefetch.c │ │ ├── test_rawdev.c │ │ ├── test_reciprocal_division.c │ │ ├── test_reciprocal_division_perf.c │ │ ├── test_red.c │ │ ├── test_reorder.c │ │ ├── test_resource.c │ │ ├── test_ring.c │ │ ├── test_ring_perf.c │ │ ├── test_rwlock.c │ │ ├── test_sched.c │ │ ├── test_service_cores.c │ │ ├── test_spinlock.c │ │ ├── test_string_fns.c │ │ ├── test_table.c │ │ ├── test_table.h │ │ ├── test_table_acl.c │ │ ├── test_table_acl.h │ │ ├── test_table_combined.c │ │ ├── test_table_combined.h │ │ ├── test_table_pipeline.c │ │ ├── test_table_pipeline.h │ │ ├── test_table_ports.c │ │ ├── test_table_ports.h │ │ ├── test_table_tables.c │ │ ├── test_table_tables.h │ │ ├── test_tailq.c │ │ ├── test_thash.c │ │ ├── test_timer.c │ │ ├── test_timer_perf.c │ │ ├── test_timer_racecond.c │ │ ├── test_version.c │ │ ├── test_xmmt_ops.h │ │ ├── virtual_pmd.c │ │ └── virtual_pmd.h └── usertools │ ├── cpu_layout.py │ ├── dpdk-devbind.py │ ├── dpdk-pmdinfo.py │ ├── dpdk-setup.sh │ └── meson.build ├── jupiter.cfg ├── lib ├── Makefile ├── libcmd │ ├── Makefile │ ├── unixctl_command.c │ └── unixctl_command.h └── libconhash │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── configure.h │ ├── conhash.c │ ├── conhash.h │ ├── conhash_inter.c │ ├── conhash_inter.h │ ├── conhash_util.c │ ├── md5.c │ ├── md5.h │ ├── sample.c │ ├── util_rbtree.c │ └── util_rbtree.h ├── linux-toa-3.10.0-327.el7.patch └── rpm.spec /.clang-format: -------------------------------------------------------------------------------- 1 | {BasedOnStyle: LLVM, IndentWidth: 4, AlwaysBreakAfterReturnType: TopLevelDefinitions} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/README.md -------------------------------------------------------------------------------- /README.zh_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/README.zh_cn.md -------------------------------------------------------------------------------- /cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/cmd/Makefile -------------------------------------------------------------------------------- /cmd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/cmd/main.c -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/lb_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_arp.c -------------------------------------------------------------------------------- /core/lb_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_arp.h -------------------------------------------------------------------------------- /core/lb_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_clock.h -------------------------------------------------------------------------------- /core/lb_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_config.c -------------------------------------------------------------------------------- /core/lb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_config.h -------------------------------------------------------------------------------- /core/lb_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_conn.c -------------------------------------------------------------------------------- /core/lb_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_conn.h -------------------------------------------------------------------------------- /core/lb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_device.c -------------------------------------------------------------------------------- /core/lb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_device.h -------------------------------------------------------------------------------- /core/lb_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_format.h -------------------------------------------------------------------------------- /core/lb_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_md5.h -------------------------------------------------------------------------------- /core/lb_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_parser.c -------------------------------------------------------------------------------- /core/lb_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_parser.h -------------------------------------------------------------------------------- /core/lb_proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_proto.c -------------------------------------------------------------------------------- /core/lb_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_proto.h -------------------------------------------------------------------------------- /core/lb_proto_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_proto_icmp.c -------------------------------------------------------------------------------- /core/lb_proto_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_proto_tcp.c -------------------------------------------------------------------------------- /core/lb_proto_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_proto_udp.c -------------------------------------------------------------------------------- /core/lb_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_scheduler.c -------------------------------------------------------------------------------- /core/lb_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_scheduler.h -------------------------------------------------------------------------------- /core/lb_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_service.c -------------------------------------------------------------------------------- /core/lb_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_service.h -------------------------------------------------------------------------------- /core/lb_synproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_synproxy.c -------------------------------------------------------------------------------- /core/lb_synproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_synproxy.h -------------------------------------------------------------------------------- /core/lb_tcp_secret_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_tcp_secret_seq.c -------------------------------------------------------------------------------- /core/lb_tcp_secret_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_tcp_secret_seq.h -------------------------------------------------------------------------------- /core/lb_toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_toa.c -------------------------------------------------------------------------------- /core/lb_toa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/lb_toa.h -------------------------------------------------------------------------------- /core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/core/main.c -------------------------------------------------------------------------------- /doc/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/doc/1.png -------------------------------------------------------------------------------- /doc/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/doc/2.png -------------------------------------------------------------------------------- /doc/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/doc/command.md -------------------------------------------------------------------------------- /dpdk/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/.gitattributes -------------------------------------------------------------------------------- /dpdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/.gitignore -------------------------------------------------------------------------------- /dpdk/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/GNUmakefile -------------------------------------------------------------------------------- /dpdk/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/MAINTAINERS -------------------------------------------------------------------------------- /dpdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/Makefile -------------------------------------------------------------------------------- /dpdk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/README -------------------------------------------------------------------------------- /dpdk/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/Makefile -------------------------------------------------------------------------------- /dpdk/app/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/meson.build -------------------------------------------------------------------------------- /dpdk/app/pdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/pdump/Makefile -------------------------------------------------------------------------------- /dpdk/app/pdump/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/pdump/main.c -------------------------------------------------------------------------------- /dpdk/app/proc_info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/proc_info/Makefile -------------------------------------------------------------------------------- /dpdk/app/proc_info/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/proc_info/main.c -------------------------------------------------------------------------------- /dpdk/app/test-bbdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-bbdev/Makefile -------------------------------------------------------------------------------- /dpdk/app/test-bbdev/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-bbdev/main.c -------------------------------------------------------------------------------- /dpdk/app/test-bbdev/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-bbdev/main.h -------------------------------------------------------------------------------- /dpdk/app/test-bbdev/test-bbdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-bbdev/test-bbdev.py -------------------------------------------------------------------------------- /dpdk/app/test-bbdev/test_bbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-bbdev/test_bbdev.c -------------------------------------------------------------------------------- /dpdk/app/test-crypto-perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-crypto-perf/Makefile -------------------------------------------------------------------------------- /dpdk/app/test-crypto-perf/cperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-crypto-perf/cperf.h -------------------------------------------------------------------------------- /dpdk/app/test-crypto-perf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-crypto-perf/main.c -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/Makefile -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/evt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/evt_common.h -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/evt_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/evt_main.c -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/evt_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/evt_options.c -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/evt_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/evt_options.h -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/evt_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/evt_test.c -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/evt_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/evt_test.h -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/meson.build -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/parser.c -------------------------------------------------------------------------------- /dpdk/app/test-eventdev/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-eventdev/parser.h -------------------------------------------------------------------------------- /dpdk/app/test-pmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/Makefile -------------------------------------------------------------------------------- /dpdk/app/test-pmd/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/cmdline.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/cmdline_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/cmdline_flow.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/cmdline_mtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/cmdline_mtr.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/cmdline_mtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/cmdline_mtr.h -------------------------------------------------------------------------------- /dpdk/app/test-pmd/cmdline_tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/cmdline_tm.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/cmdline_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/cmdline_tm.h -------------------------------------------------------------------------------- /dpdk/app/test-pmd/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/config.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/csumonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/csumonly.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/flowgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/flowgen.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/icmpecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/icmpecho.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/ieee1588fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/ieee1588fwd.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/iofwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/iofwd.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/macfwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/macfwd.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/macswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/macswap.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/meson.build -------------------------------------------------------------------------------- /dpdk/app/test-pmd/parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/parameters.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/rxonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/rxonly.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/testpmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/testpmd.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/testpmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/testpmd.h -------------------------------------------------------------------------------- /dpdk/app/test-pmd/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/tm.c -------------------------------------------------------------------------------- /dpdk/app/test-pmd/txonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/app/test-pmd/txonly.c -------------------------------------------------------------------------------- /dpdk/buildtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/Makefile -------------------------------------------------------------------------------- /dpdk/buildtools/auto-config-h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/auto-config-h.sh -------------------------------------------------------------------------------- /dpdk/buildtools/gen-build-mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/gen-build-mk.sh -------------------------------------------------------------------------------- /dpdk/buildtools/gen-config-h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/gen-config-h.sh -------------------------------------------------------------------------------- /dpdk/buildtools/gen-pmdinfo-cfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/gen-pmdinfo-cfile.sh -------------------------------------------------------------------------------- /dpdk/buildtools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/meson.build -------------------------------------------------------------------------------- /dpdk/buildtools/pmdinfogen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/pmdinfogen/Makefile -------------------------------------------------------------------------------- /dpdk/buildtools/relpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/buildtools/relpath.sh -------------------------------------------------------------------------------- /dpdk/config/arm/armv8_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/arm/armv8_machine.py -------------------------------------------------------------------------------- /dpdk/config/arm/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/arm/meson.build -------------------------------------------------------------------------------- /dpdk/config/common_armv8a_linuxapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/common_armv8a_linuxapp -------------------------------------------------------------------------------- /dpdk/config/common_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/common_base -------------------------------------------------------------------------------- /dpdk/config/common_bsdapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/common_bsdapp -------------------------------------------------------------------------------- /dpdk/config/common_linuxapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/common_linuxapp -------------------------------------------------------------------------------- /dpdk/config/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/meson.build -------------------------------------------------------------------------------- /dpdk/config/rte_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/rte_config.h -------------------------------------------------------------------------------- /dpdk/config/x86/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/config/x86/meson.build -------------------------------------------------------------------------------- /dpdk/devtools/build-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/build-tags.sh -------------------------------------------------------------------------------- /dpdk/devtools/check-dup-includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/check-dup-includes.sh -------------------------------------------------------------------------------- /dpdk/devtools/check-git-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/check-git-log.sh -------------------------------------------------------------------------------- /dpdk/devtools/check-includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/check-includes.sh -------------------------------------------------------------------------------- /dpdk/devtools/check-maintainers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/check-maintainers.sh -------------------------------------------------------------------------------- /dpdk/devtools/checkpatches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/checkpatches.sh -------------------------------------------------------------------------------- /dpdk/devtools/cocci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/cocci.sh -------------------------------------------------------------------------------- /dpdk/devtools/cocci/strlcpy.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/cocci/strlcpy.cocci -------------------------------------------------------------------------------- /dpdk/devtools/get-maintainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/get-maintainer.sh -------------------------------------------------------------------------------- /dpdk/devtools/git-log-fixes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/git-log-fixes.sh -------------------------------------------------------------------------------- /dpdk/devtools/load-devel-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/load-devel-config -------------------------------------------------------------------------------- /dpdk/devtools/test-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/test-build.sh -------------------------------------------------------------------------------- /dpdk/devtools/test-null.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/test-null.sh -------------------------------------------------------------------------------- /dpdk/devtools/validate-abi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/devtools/validate-abi.sh -------------------------------------------------------------------------------- /dpdk/doc/api/doxy-api-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/api/doxy-api-index.md -------------------------------------------------------------------------------- /dpdk/doc/api/doxy-api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/api/doxy-api.conf -------------------------------------------------------------------------------- /dpdk/doc/api/doxy-html-custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/api/doxy-html-custom.sh -------------------------------------------------------------------------------- /dpdk/doc/build-sdk-meson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/build-sdk-meson.txt -------------------------------------------------------------------------------- /dpdk/doc/build-sdk-quick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/build-sdk-quick.txt -------------------------------------------------------------------------------- /dpdk/doc/guides/bbdevs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/bbdevs/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/bbdevs/null.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/bbdevs/null.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/conf.py -------------------------------------------------------------------------------- /dpdk/doc/guides/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/custom.css -------------------------------------------------------------------------------- /dpdk/doc/guides/eventdevs/sw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/eventdevs/sw.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/faq/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/faq/faq.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/faq/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/howto/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/howto/vfd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/howto/vfd.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/mempool/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/mempool/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/ark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/ark.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/avp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/avp.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/bnx2x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/bnx2x.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/bnxt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/bnxt.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/cxgbe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/cxgbe.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/dpaa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/dpaa.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/dpaa2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/dpaa2.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/e1000em.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/e1000em.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/ena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/ena.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/enic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/enic.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/features.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/fm10k.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/fm10k.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/i40e.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/i40e.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/igb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/igb.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/intel_vf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/intel_vf.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/ixgbe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/ixgbe.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/kni.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/kni.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/liquidio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/liquidio.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/mlx4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/mlx4.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/mlx5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/mlx5.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/mrvl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/mrvl.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/nfp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/nfp.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/octeontx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/octeontx.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/overview.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/qede.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/qede.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/sfc_efx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/sfc_efx.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/szedata2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/szedata2.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/tap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/tap.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/thunderx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/thunderx.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/vhost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/vhost.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/virtio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/virtio.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/nics/vmxnet3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/nics/vmxnet3.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/tools/devbind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/tools/devbind.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/tools/index.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/tools/pdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/tools/pdump.rst -------------------------------------------------------------------------------- /dpdk/doc/guides/tools/pmdinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/doc/guides/tools/pmdinfo.rst -------------------------------------------------------------------------------- /dpdk/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bbdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bbdev/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bbdev/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bbdev/null/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bbdev/null/rte_pmd_bbdev_null_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/bbdev/turbo_sw/rte_pmd_bbdev_turbo_sw_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/bus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bus/dpaa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/dpaa/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bus/dpaa/dpaa_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/dpaa/dpaa_bus.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/fslmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/fslmc/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bus/fslmc/mc/dpbp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/fslmc/mc/dpbp.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/fslmc/mc/dpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/fslmc/mc/dpci.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/fslmc/mc/dpcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/fslmc/mc/dpcon.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/fslmc/mc/dpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/fslmc/mc/dpio.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/fslmc/mc/dpmng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/fslmc/mc/dpmng.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/bsd/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/bsd/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/bsd/pci.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/linux/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/linux/pci.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/pci_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/pci_common.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/pci/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/pci/private.h -------------------------------------------------------------------------------- /dpdk/drivers/bus/vdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/vdev/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/bus/vdev/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/vdev/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/bus/vdev/vdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/vdev/vdev.c -------------------------------------------------------------------------------- /dpdk/drivers/bus/vdev/vdev_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/bus/vdev/vdev_logs.h -------------------------------------------------------------------------------- /dpdk/drivers/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/crypto/aesni_gcm/rte_pmd_aesni_gcm_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.04 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/aesni_mb/rte_pmd_aesni_mb_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.2 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/armv8/rte_pmd_armv8_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.02 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/dpaa2_sec/rte_pmd_dpaa2_sec_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/dpaa_sec/rte_pmd_dpaa_sec_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.11 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/kasumi/rte_pmd_kasumi_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.07 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/crypto/mrvl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/mrvl/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/crypto/mrvl/rte_pmd_mrvl_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.11 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/null/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/crypto/null/rte_pmd_null_crypto_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.04 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/openssl/rte_pmd_openssl_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.11 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/qat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/qat/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/crypto/qat/qat_qp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/qat/qat_qp.c -------------------------------------------------------------------------------- /dpdk/drivers/crypto/qat/rte_pmd_qat_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.2 { 2 | local: *; 3 | }; -------------------------------------------------------------------------------- /dpdk/drivers/crypto/snow3g/rte_pmd_snow3g_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.04 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/crypto/zuc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/crypto/zuc/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/crypto/zuc/rte_pmd_zuc_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.11 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/event/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/event/dpaa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/dpaa/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/event/dpaa/rte_pmd_dpaa_event_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/event/dpaa2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/dpaa2/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/event/dpaa2/rte_pmd_dpaa2_event_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.08 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/event/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/event/octeontx/rte_pmd_octeontx_event_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/event/opdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/opdl/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/event/opdl/rte_pmd_evdev_opdl_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/event/skeleton/rte_pmd_skeleton_event_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/event/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/sw/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/event/sw/iq_chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/sw/iq_chunk.h -------------------------------------------------------------------------------- /dpdk/drivers/event/sw/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/sw/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/event/sw/rte_pmd_sw_event_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/event/sw/sw_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/sw/sw_evdev.c -------------------------------------------------------------------------------- /dpdk/drivers/event/sw/sw_evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/event/sw/sw_evdev.h -------------------------------------------------------------------------------- /dpdk/drivers/mempool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/mempool/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/mempool/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/mempool/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/mempool/ring/rte_mempool_ring_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/mempool/stack/rte_mempool_stack_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/af_packet/rte_pmd_af_packet_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_ddm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_ddm.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_ddm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_ddm.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_ethdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_ethdev.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_ext.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_global.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_logs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_mpu.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_mpu.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_pktdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_pktdir.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_pktdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_pktdir.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_pktgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_pktgen.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_pktgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_pktgen.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_rqp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_rqp.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_rqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_rqp.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_udm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_udm.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/ark_udm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ark/ark_udm.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ark/rte_pmd_ark_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | local: *; 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/avf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/avf.h -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/avf_ethdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/avf_ethdev.c -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/avf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/avf_log.h -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/avf_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/avf_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/avf_rxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/avf_rxtx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/avf_vchnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/avf_vchnl.c -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/base/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avf/base/README -------------------------------------------------------------------------------- /dpdk/drivers/net/avf/rte_pmd_avf_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/avp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avp/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/avp/avp_ethdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avp/avp_ethdev.c -------------------------------------------------------------------------------- /dpdk/drivers/net/avp/avp_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/avp/avp_logs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/avp/rte_pmd_avp_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/bnx2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/bnx2x.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/bnx2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/bnx2x.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/ecore_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/ecore_sp.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/ecore_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/ecore_sp.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/elink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/elink.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/elink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnx2x/elink.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnx2x/rte_pmd_bnx2x_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.1 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_cpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_cpr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_cpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_cpr.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_hwrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_hwrm.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_hwrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_hwrm.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_irq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_irq.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_ring.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_ring.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_rxq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_rxq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_rxq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_rxq.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_rxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_rxr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_rxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_rxr.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_txq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_txq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_txq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_txq.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_txr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_txr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_txr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_txr.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_vnic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_vnic.c -------------------------------------------------------------------------------- /dpdk/drivers/net/bnxt/bnxt_vnic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bnxt/bnxt_vnic.h -------------------------------------------------------------------------------- /dpdk/drivers/net/bonding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/bonding/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/cxgbe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/cxgbe/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/cxgbe/cxgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/cxgbe/cxgbe.h -------------------------------------------------------------------------------- /dpdk/drivers/net/cxgbe/rte_pmd_cxgbe_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.1 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/cxgbe/sge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/cxgbe/sge.c -------------------------------------------------------------------------------- /dpdk/drivers/net/dpaa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/dpaa/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/dpaa/dpaa_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/dpaa/dpaa_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/dpaa/dpaa_rxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/dpaa/dpaa_rxtx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/dpaa2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/dpaa2/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/dpaa2/mc/dpkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/dpaa2/mc/dpkg.c -------------------------------------------------------------------------------- /dpdk/drivers/net/dpaa2/mc/dpni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/dpaa2/mc/dpni.c -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/e1000/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/em_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/e1000/em_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/igb_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/e1000/igb_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/igb_pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/e1000/igb_pf.c -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/igb_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/e1000/igb_regs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/igb_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/e1000/igb_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/e1000/rte_pmd_e1000_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/ena/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ena/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/ena/ena_ethdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ena/ena_ethdev.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ena/ena_ethdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ena/ena_ethdev.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ena/ena_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ena/ena_logs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/ena/rte_pmd_ena_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.04 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic.h -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic_clsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic_clsf.c -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic_main.c -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic_res.c -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic_res.h -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/enic_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/enic/enic_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/enic/rte_pmd_enic_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/failsafe/rte_pmd_failsafe_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.08 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/fm10k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/fm10k/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/fm10k/fm10k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/fm10k/fm10k.h -------------------------------------------------------------------------------- /dpdk/drivers/net/fm10k/rte_pmd_fm10k_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/base/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/base/README -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_fdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_fdir.c -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_logs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_pf.c -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_pf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_pf.h -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_regs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_rxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_rxtx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/i40e_tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/i40e_tm.c -------------------------------------------------------------------------------- /dpdk/drivers/net/i40e/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/i40e/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/ixgbe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ixgbe/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/ixgbe/ixgbe_pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ixgbe/ixgbe_pf.c -------------------------------------------------------------------------------- /dpdk/drivers/net/ixgbe/ixgbe_tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ixgbe/ixgbe_tm.c -------------------------------------------------------------------------------- /dpdk/drivers/net/kni/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/kni/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/kni/rte_pmd_kni_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/liquidio/rte_pmd_lio_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.05 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_flow.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_glue.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_glue.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_intr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_mr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_mr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_prm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_prm.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_rxq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_rxq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_rxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_rxtx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/mlx4_txq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx4/mlx4_txq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx4/rte_pmd_mlx4_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_defs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_glue.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_glue.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_mac.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_mr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_mr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_prm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_prm.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_rss.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_rxq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_rxq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_rxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_rxtx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_txq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_txq.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/mlx5_vlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mlx5/mlx5_vlan.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mlx5/rte_pmd_mlx5_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.2 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/net/mrvl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mrvl/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/mrvl/mrvl_qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mrvl/mrvl_qos.c -------------------------------------------------------------------------------- /dpdk/drivers/net/mrvl/mrvl_qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/mrvl/mrvl_qos.h -------------------------------------------------------------------------------- /dpdk/drivers/net/mrvl/rte_pmd_mrvl_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.11 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/nfp/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/nfp_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/nfp/nfp_net.c -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/nfp_nfpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/nfp/nfp_nfpu.c -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/nfp_nfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/nfp/nfp_nfpu.h -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/nfp_nspu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/nfp/nfp_nspu.c -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/nfp_nspu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/nfp/nfp_nspu.h -------------------------------------------------------------------------------- /dpdk/drivers/net/nfp/rte_pmd_nfp_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.2 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/net/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/null/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/null/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/null/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/null/rte_pmd_null_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/pcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/pcap/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/pcap/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/pcap/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/pcap/rte_pmd_pcap_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/qede_fdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/qede_fdir.c -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/qede_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/qede_if.h -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/qede_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/qede_logs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/qede_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/qede_main.c -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/qede_rxtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/qede_rxtx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/qede_rxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/qede/qede_rxtx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/qede/rte_pmd_qede_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.04 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/ring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ring/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/ring/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/ring/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/base/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/base/README -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/base/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/base/efx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/efsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/efsys.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/meson.build -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/rte_pmd_sfc_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.02 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_debug.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_dp.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_dp.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_dp_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_dp_rx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_dp_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_dp_tx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_ef10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_ef10.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_ethdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_ethdev.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_ev.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_ev.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_filter.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_filter.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_flow.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_intr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_kvargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_kvargs.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_kvargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_kvargs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_log.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_mcdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_mcdi.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_port.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_rx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_rx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_tso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_tso.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_tweak.h -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_tx.c -------------------------------------------------------------------------------- /dpdk/drivers/net/sfc/sfc_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/sfc/sfc_tx.h -------------------------------------------------------------------------------- /dpdk/drivers/net/softnic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/softnic/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/szedata2/rte_pmd_szedata2_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.2 { 2 | local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/rte_pmd_tap_version.map: -------------------------------------------------------------------------------- 1 | DPDK_17.02 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_bpf.h -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_flow.c -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_flow.h -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_intr.c -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_rss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_rss.h -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_tcmsgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_tcmsgs.c -------------------------------------------------------------------------------- /dpdk/drivers/net/tap/tap_tcmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/tap/tap_tcmsgs.h -------------------------------------------------------------------------------- /dpdk/drivers/net/thunderx/rte_pmd_thunderx_version.map: -------------------------------------------------------------------------------- 1 | DPDK_16.07 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/vdev_netvsc/rte_pmd_vdev_netvsc_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/vhost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/vhost/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/virtio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/virtio/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/virtio/rte_pmd_virtio_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/net/vmxnet3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/net/vmxnet3/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/net/vmxnet3/rte_pmd_vmxnet3_version.map: -------------------------------------------------------------------------------- 1 | DPDK_2.0 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/drivers/raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/drivers/raw/Makefile -------------------------------------------------------------------------------- /dpdk/drivers/raw/skeleton_rawdev/rte_pmd_skeleton_rawdev_version.map: -------------------------------------------------------------------------------- 1 | DPDK_18.02 { 2 | 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /dpdk/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/Makefile -------------------------------------------------------------------------------- /dpdk/examples/bbdev_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/bbdev_app/Makefile -------------------------------------------------------------------------------- /dpdk/examples/bbdev_app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/bbdev_app/main.c -------------------------------------------------------------------------------- /dpdk/examples/bond/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/bond/Makefile -------------------------------------------------------------------------------- /dpdk/examples/bond/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/bond/main.c -------------------------------------------------------------------------------- /dpdk/examples/bond/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/bond/main.h -------------------------------------------------------------------------------- /dpdk/examples/bond/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/bond/meson.build -------------------------------------------------------------------------------- /dpdk/examples/cmdline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/cmdline/Makefile -------------------------------------------------------------------------------- /dpdk/examples/cmdline/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/cmdline/commands.c -------------------------------------------------------------------------------- /dpdk/examples/cmdline/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/cmdline/commands.h -------------------------------------------------------------------------------- /dpdk/examples/cmdline/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/cmdline/main.c -------------------------------------------------------------------------------- /dpdk/examples/cmdline/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/cmdline/meson.build -------------------------------------------------------------------------------- /dpdk/examples/distributor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/distributor/main.c -------------------------------------------------------------------------------- /dpdk/examples/ethtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ethtool/Makefile -------------------------------------------------------------------------------- /dpdk/examples/helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/helloworld/Makefile -------------------------------------------------------------------------------- /dpdk/examples/helloworld/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/helloworld/main.c -------------------------------------------------------------------------------- /dpdk/examples/ip_pipeline/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ip_pipeline/app.h -------------------------------------------------------------------------------- /dpdk/examples/ip_pipeline/config/ip_pipeline.sh: -------------------------------------------------------------------------------- 1 | # 2 | #run config/ip_pipeline.sh 3 | # 4 | 5 | p 1 ping 6 | -------------------------------------------------------------------------------- /dpdk/examples/ip_pipeline/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ip_pipeline/init.c -------------------------------------------------------------------------------- /dpdk/examples/ip_pipeline/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ip_pipeline/main.c -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/ep0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/ep0.cfg -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/ep1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/ep1.cfg -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/esp.c -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/esp.h -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/ipip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/ipip.h -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/ipsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/ipsec.c -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/ipsec.h -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/rt.c -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/sa.c -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/sp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/sp4.c -------------------------------------------------------------------------------- /dpdk/examples/ipsec-secgw/sp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ipsec-secgw/sp6.c -------------------------------------------------------------------------------- /dpdk/examples/kni/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/kni/Makefile -------------------------------------------------------------------------------- /dpdk/examples/kni/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/kni/main.c -------------------------------------------------------------------------------- /dpdk/examples/kni/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/kni/meson.build -------------------------------------------------------------------------------- /dpdk/examples/l2fwd-cat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd-cat/Makefile -------------------------------------------------------------------------------- /dpdk/examples/l2fwd-cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd-cat/cat.c -------------------------------------------------------------------------------- /dpdk/examples/l2fwd-cat/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd-cat/cat.h -------------------------------------------------------------------------------- /dpdk/examples/l2fwd-crypto/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd-crypto/main.c -------------------------------------------------------------------------------- /dpdk/examples/l2fwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd/Makefile -------------------------------------------------------------------------------- /dpdk/examples/l2fwd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd/main.c -------------------------------------------------------------------------------- /dpdk/examples/l2fwd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l2fwd/meson.build -------------------------------------------------------------------------------- /dpdk/examples/l3fwd-acl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd-acl/Makefile -------------------------------------------------------------------------------- /dpdk/examples/l3fwd-acl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd-acl/main.c -------------------------------------------------------------------------------- /dpdk/examples/l3fwd-power/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd-power/main.c -------------------------------------------------------------------------------- /dpdk/examples/l3fwd-vf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd-vf/Makefile -------------------------------------------------------------------------------- /dpdk/examples/l3fwd-vf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd-vf/main.c -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/Makefile -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd.h -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd_em.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd_em.c -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd_em.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd_em.h -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd_lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd_lpm.c -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd_lpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd_lpm.h -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd_neon.h -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/l3fwd_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/l3fwd_sse.h -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/main.c -------------------------------------------------------------------------------- /dpdk/examples/l3fwd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/l3fwd/meson.build -------------------------------------------------------------------------------- /dpdk/examples/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/meson.build -------------------------------------------------------------------------------- /dpdk/examples/ptpclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/ptpclient/Makefile -------------------------------------------------------------------------------- /dpdk/examples/qos_meter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_meter/Makefile -------------------------------------------------------------------------------- /dpdk/examples/qos_meter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_meter/main.c -------------------------------------------------------------------------------- /dpdk/examples/qos_meter/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_meter/main.h -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/Makefile -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/args.c -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/cmdline.c -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/init.c -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/main.c -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/main.h -------------------------------------------------------------------------------- /dpdk/examples/qos_sched/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/qos_sched/stats.c -------------------------------------------------------------------------------- /dpdk/examples/skeleton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/skeleton/Makefile -------------------------------------------------------------------------------- /dpdk/examples/skeleton/basicfwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/skeleton/basicfwd.c -------------------------------------------------------------------------------- /dpdk/examples/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/timer/Makefile -------------------------------------------------------------------------------- /dpdk/examples/timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/timer/main.c -------------------------------------------------------------------------------- /dpdk/examples/timer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/timer/meson.build -------------------------------------------------------------------------------- /dpdk/examples/vhost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost/Makefile -------------------------------------------------------------------------------- /dpdk/examples/vhost/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost/main.c -------------------------------------------------------------------------------- /dpdk/examples/vhost/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost/main.h -------------------------------------------------------------------------------- /dpdk/examples/vhost/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost/meson.build -------------------------------------------------------------------------------- /dpdk/examples/vhost/virtio_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost/virtio_net.c -------------------------------------------------------------------------------- /dpdk/examples/vhost_scsi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost_scsi/Makefile -------------------------------------------------------------------------------- /dpdk/examples/vhost_scsi/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vhost_scsi/scsi.c -------------------------------------------------------------------------------- /dpdk/examples/vmdq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vmdq/Makefile -------------------------------------------------------------------------------- /dpdk/examples/vmdq/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vmdq/main.c -------------------------------------------------------------------------------- /dpdk/examples/vmdq/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vmdq/meson.build -------------------------------------------------------------------------------- /dpdk/examples/vmdq_dcb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vmdq_dcb/Makefile -------------------------------------------------------------------------------- /dpdk/examples/vmdq_dcb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/examples/vmdq_dcb/main.c -------------------------------------------------------------------------------- /dpdk/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl.h -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl_bld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl_bld.c -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl_gen.c -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl_run.h -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl_run_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl_run_sse.c -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl_run_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl_run_sse.h -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/acl_vect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/acl_vect.h -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/rte_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/rte_acl.c -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/rte_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/rte_acl.h -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/tb_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/tb_mem.c -------------------------------------------------------------------------------- /dpdk/lib/librte_acl/tb_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_acl/tb_mem.h -------------------------------------------------------------------------------- /dpdk/lib/librte_bbdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_bbdev/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_bbdev/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_bbdev/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_bbdev/rte_bbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_bbdev/rte_bbdev.c -------------------------------------------------------------------------------- /dpdk/lib/librte_bbdev/rte_bbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_bbdev/rte_bbdev.h -------------------------------------------------------------------------------- /dpdk/lib/librte_cfgfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_cfgfile/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_cmdline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_cmdline/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_cmdline/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_cmdline/cmdline.c -------------------------------------------------------------------------------- /dpdk/lib/librte_cmdline/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_cmdline/cmdline.h -------------------------------------------------------------------------------- /dpdk/lib/librte_compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_compat/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_eal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_eal/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_eal/linuxapp/igb_uio/Kbuild: -------------------------------------------------------------------------------- 1 | ccflags-y := $(MODULE_CFLAGS) 2 | obj-m := igb_uio.o 3 | -------------------------------------------------------------------------------- /dpdk/lib/librte_eal/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_eal/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_efd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_efd/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_efd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_efd/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_efd/rte_efd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_efd/rte_efd.c -------------------------------------------------------------------------------- /dpdk/lib/librte_efd/rte_efd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_efd/rte_efd.h -------------------------------------------------------------------------------- /dpdk/lib/librte_efd/rte_efd_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_efd/rte_efd_x86.h -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/rte_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/rte_flow.c -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/rte_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/rte_flow.h -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/rte_mtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/rte_mtr.c -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/rte_mtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/rte_mtr.h -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/rte_tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/rte_tm.c -------------------------------------------------------------------------------- /dpdk/lib/librte_ether/rte_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ether/rte_tm.h -------------------------------------------------------------------------------- /dpdk/lib/librte_eventdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_eventdev/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_gro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gro/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_gro/gro_tcp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gro/gro_tcp4.c -------------------------------------------------------------------------------- /dpdk/lib/librte_gro/gro_tcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gro/gro_tcp4.h -------------------------------------------------------------------------------- /dpdk/lib/librte_gro/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gro/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_gro/rte_gro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gro/rte_gro.c -------------------------------------------------------------------------------- /dpdk/lib/librte_gro/rte_gro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gro/rte_gro.h -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/gso_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/gso_common.c -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/gso_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/gso_common.h -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/gso_tcp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/gso_tcp4.c -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/gso_tcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/gso_tcp4.h -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/rte_gso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/rte_gso.c -------------------------------------------------------------------------------- /dpdk/lib/librte_gso/rte_gso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_gso/rte_gso.h -------------------------------------------------------------------------------- /dpdk/lib/librte_hash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_hash/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_hash/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_hash/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_hash/rte_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_hash/rte_hash.h -------------------------------------------------------------------------------- /dpdk/lib/librte_hash/rte_jhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_hash/rte_jhash.h -------------------------------------------------------------------------------- /dpdk/lib/librte_hash/rte_thash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_hash/rte_thash.h -------------------------------------------------------------------------------- /dpdk/lib/librte_ip_frag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ip_frag/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_jobstats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_jobstats/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_kni/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_kni/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_kni/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_kni/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_kni/rte_kni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_kni/rte_kni.c -------------------------------------------------------------------------------- /dpdk/lib/librte_kni/rte_kni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_kni/rte_kni.h -------------------------------------------------------------------------------- /dpdk/lib/librte_kvargs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_kvargs/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/rte_lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/rte_lpm.c -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/rte_lpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/rte_lpm.h -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/rte_lpm6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/rte_lpm6.c -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/rte_lpm6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/rte_lpm6.h -------------------------------------------------------------------------------- /dpdk/lib/librte_lpm/rte_lpm_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_lpm/rte_lpm_sse.h -------------------------------------------------------------------------------- /dpdk/lib/librte_mbuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_mbuf/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_mbuf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_mbuf/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_mbuf/rte_mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_mbuf/rte_mbuf.c -------------------------------------------------------------------------------- /dpdk/lib/librte_mbuf/rte_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_mbuf/rte_mbuf.h -------------------------------------------------------------------------------- /dpdk/lib/librte_member/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_member/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_mempool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_mempool/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_meter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_meter/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_meter/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_meter/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_meter/rte_meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_meter/rte_meter.c -------------------------------------------------------------------------------- /dpdk/lib/librte_meter/rte_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_meter/rte_meter.h -------------------------------------------------------------------------------- /dpdk/lib/librte_metrics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_metrics/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_net/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_net/net_crc_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/net_crc_sse.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_arp.c -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_arp.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_esp.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_ether.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_gre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_gre.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_icmp.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_ip.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_net.c -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_net.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_net_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_net_crc.c -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_net_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_net_crc.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_sctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_sctp.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_tcp.h -------------------------------------------------------------------------------- /dpdk/lib/librte_net/rte_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_net/rte_udp.h -------------------------------------------------------------------------------- /dpdk/lib/librte_pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pci/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_pci/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pci/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_pci/rte_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pci/rte_pci.c -------------------------------------------------------------------------------- /dpdk/lib/librte_pci/rte_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pci/rte_pci.h -------------------------------------------------------------------------------- /dpdk/lib/librte_pdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pdump/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_pdump/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pdump/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_pdump/rte_pdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pdump/rte_pdump.c -------------------------------------------------------------------------------- /dpdk/lib/librte_pdump/rte_pdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pdump/rte_pdump.h -------------------------------------------------------------------------------- /dpdk/lib/librte_pipeline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_pipeline/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_port/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_port/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_port/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_port/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_port/rte_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_port/rte_port.h -------------------------------------------------------------------------------- /dpdk/lib/librte_power/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_power/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_power/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_power/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_power/rte_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_power/rte_power.c -------------------------------------------------------------------------------- /dpdk/lib/librte_power/rte_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_power/rte_power.h -------------------------------------------------------------------------------- /dpdk/lib/librte_rawdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_rawdev/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_reorder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_reorder/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_ring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ring/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_ring/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ring/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_ring/rte_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ring/rte_ring.c -------------------------------------------------------------------------------- /dpdk/lib/librte_ring/rte_ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_ring/rte_ring.h -------------------------------------------------------------------------------- /dpdk/lib/librte_sched/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_sched/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_sched/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_sched/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_sched/rte_red.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_sched/rte_red.c -------------------------------------------------------------------------------- /dpdk/lib/librte_sched/rte_red.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_sched/rte_red.h -------------------------------------------------------------------------------- /dpdk/lib/librte_sched/rte_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_sched/rte_sched.c -------------------------------------------------------------------------------- /dpdk/lib/librte_sched/rte_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_sched/rte_sched.h -------------------------------------------------------------------------------- /dpdk/lib/librte_security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_security/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_table/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_table/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_table/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_table/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_table/rte_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_table/rte_lru.h -------------------------------------------------------------------------------- /dpdk/lib/librte_table/rte_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_table/rte_table.h -------------------------------------------------------------------------------- /dpdk/lib/librte_timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_timer/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_timer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_timer/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_timer/rte_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_timer/rte_timer.c -------------------------------------------------------------------------------- /dpdk/lib/librte_timer/rte_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_timer/rte_timer.h -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/Makefile -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/fd_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/fd_man.c -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/fd_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/fd_man.h -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/iotlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/iotlb.c -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/iotlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/iotlb.h -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/meson.build -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/rte_vhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/rte_vhost.h -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/socket.c -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/vhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/vhost.c -------------------------------------------------------------------------------- /dpdk/lib/librte_vhost/vhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/librte_vhost/vhost.h -------------------------------------------------------------------------------- /dpdk/lib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/lib/meson.build -------------------------------------------------------------------------------- /dpdk/license/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/license/README -------------------------------------------------------------------------------- /dpdk/license/bsd-3-clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/license/bsd-3-clause.txt -------------------------------------------------------------------------------- /dpdk/license/exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/license/exceptions.txt -------------------------------------------------------------------------------- /dpdk/license/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/license/gpl-2.0.txt -------------------------------------------------------------------------------- /dpdk/license/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/license/lgpl-2.1.txt -------------------------------------------------------------------------------- /dpdk/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/meson.build -------------------------------------------------------------------------------- /dpdk/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/meson_options.txt -------------------------------------------------------------------------------- /dpdk/mk/arch/arm/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/arch/arm/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/arch/arm64/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/arch/arm64/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/arch/i686/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/arch/i686/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/arch/ppc_64/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/arch/ppc_64/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/arch/x86_64/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/arch/x86_64/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/arch/x86_x32/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/arch/x86_x32/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/internal/rte.build-pre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/internal/rte.build-pre.mk -------------------------------------------------------------------------------- /dpdk/mk/internal/rte.clean-pre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/internal/rte.clean-pre.mk -------------------------------------------------------------------------------- /dpdk/mk/internal/rte.extvars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/internal/rte.extvars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/dpaa/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/dpaa/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/dpaa2/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/dpaa2/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/hsw/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/hsw/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/ivb/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/ivb/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/nhm/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/nhm/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/snb/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/snb/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/machine/wsm/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/machine/wsm/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.app.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.bsdmodule.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.bsdmodule.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.combinedlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.combinedlib.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.cpuflags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.cpuflags.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.extapp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.extapp.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.extlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.extlib.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.extobj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.extobj.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.extshared.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.extshared.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.extsubdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.extsubdir.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.gnuconfigure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.gnuconfigure.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.hostapp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.hostapp.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.hostlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.hostlib.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.install.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.lib.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.module.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.obj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.obj.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkbuild.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkbuild.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkconfig.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkdepdirs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkdepdirs.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkdoc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkdoc.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkexamples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkexamples.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkgcov.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkgcov.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkinstall.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkinstall.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdkroot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdkroot.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.sdktest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.sdktest.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.shared.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.shared.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.subdir.mk -------------------------------------------------------------------------------- /dpdk/mk/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/target/generic/rte.app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/target/generic/rte.app.mk -------------------------------------------------------------------------------- /dpdk/mk/toolchain/gcc/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/toolchain/gcc/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/mk/toolchain/icc/rte.vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/mk/toolchain/icc/rte.vars.mk -------------------------------------------------------------------------------- /dpdk/pkg/dpdk.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/pkg/dpdk.spec -------------------------------------------------------------------------------- /dpdk/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/Makefile -------------------------------------------------------------------------------- /dpdk/test/cmdline_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/cmdline_test/Makefile -------------------------------------------------------------------------------- /dpdk/test/cmdline_test/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/cmdline_test/commands.c -------------------------------------------------------------------------------- /dpdk/test/test-acl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-acl/Makefile -------------------------------------------------------------------------------- /dpdk/test/test-acl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-acl/main.c -------------------------------------------------------------------------------- /dpdk/test/test-pipeline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-pipeline/Makefile -------------------------------------------------------------------------------- /dpdk/test/test-pipeline/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-pipeline/config.c -------------------------------------------------------------------------------- /dpdk/test/test-pipeline/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-pipeline/init.c -------------------------------------------------------------------------------- /dpdk/test/test-pipeline/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-pipeline/main.c -------------------------------------------------------------------------------- /dpdk/test/test-pipeline/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-pipeline/main.h -------------------------------------------------------------------------------- /dpdk/test/test-pipeline/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test-pipeline/runtime.c -------------------------------------------------------------------------------- /dpdk/test/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/Makefile -------------------------------------------------------------------------------- /dpdk/test/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/autotest.py -------------------------------------------------------------------------------- /dpdk/test/test/autotest_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/autotest_data.py -------------------------------------------------------------------------------- /dpdk/test/test/autotest_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/autotest_runner.py -------------------------------------------------------------------------------- /dpdk/test/test/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/commands.c -------------------------------------------------------------------------------- /dpdk/test/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/meson.build -------------------------------------------------------------------------------- /dpdk/test/test/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/process.h -------------------------------------------------------------------------------- /dpdk/test/test/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/resource.c -------------------------------------------------------------------------------- /dpdk/test/test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/resource.h -------------------------------------------------------------------------------- /dpdk/test/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test.c -------------------------------------------------------------------------------- /dpdk/test/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test.h -------------------------------------------------------------------------------- /dpdk/test/test/test_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_acl.c -------------------------------------------------------------------------------- /dpdk/test/test/test_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_acl.h -------------------------------------------------------------------------------- /dpdk/test/test/test_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_alarm.c -------------------------------------------------------------------------------- /dpdk/test/test/test_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_atomic.c -------------------------------------------------------------------------------- /dpdk/test/test/test_barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_barrier.c -------------------------------------------------------------------------------- /dpdk/test/test/test_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_bitmap.c -------------------------------------------------------------------------------- /dpdk/test/test/test_byteorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_byteorder.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cfgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cfgfile.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cfgfiles/etc/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dpdk/test/test/test_cfgfiles/etc/missing_section.ini: -------------------------------------------------------------------------------- 1 | ; no section 2 | key=value 3 | -------------------------------------------------------------------------------- /dpdk/test/test/test_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cmdline.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cmdline.h -------------------------------------------------------------------------------- /dpdk/test/test/test_cmdline_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cmdline_lib.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cmdline_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cmdline_num.c -------------------------------------------------------------------------------- /dpdk/test/test/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_common.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cpuflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cpuflags.c -------------------------------------------------------------------------------- /dpdk/test/test/test_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_crc.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cryptodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cryptodev.c -------------------------------------------------------------------------------- /dpdk/test/test/test_cryptodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cryptodev.h -------------------------------------------------------------------------------- /dpdk/test/test/test_cycles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_cycles.c -------------------------------------------------------------------------------- /dpdk/test/test/test_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_debug.c -------------------------------------------------------------------------------- /dpdk/test/test/test_devargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_devargs.c -------------------------------------------------------------------------------- /dpdk/test/test/test_distributor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_distributor.c -------------------------------------------------------------------------------- /dpdk/test/test/test_eal_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_eal_flags.c -------------------------------------------------------------------------------- /dpdk/test/test/test_eal_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_eal_fs.c -------------------------------------------------------------------------------- /dpdk/test/test/test_efd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_efd.c -------------------------------------------------------------------------------- /dpdk/test/test/test_efd_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_efd_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_errno.c -------------------------------------------------------------------------------- /dpdk/test/test/test_event_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_event_ring.c -------------------------------------------------------------------------------- /dpdk/test/test/test_eventdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_eventdev.c -------------------------------------------------------------------------------- /dpdk/test/test/test_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_hash.c -------------------------------------------------------------------------------- /dpdk/test/test/test_hash_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_hash_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_interrupts.c -------------------------------------------------------------------------------- /dpdk/test/test/test_kni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_kni.c -------------------------------------------------------------------------------- /dpdk/test/test/test_kvargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_kvargs.c -------------------------------------------------------------------------------- /dpdk/test/test/test_logs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_logs.c -------------------------------------------------------------------------------- /dpdk/test/test/test_lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_lpm.c -------------------------------------------------------------------------------- /dpdk/test/test/test_lpm6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_lpm6.c -------------------------------------------------------------------------------- /dpdk/test/test/test_lpm6_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_lpm6_data.h -------------------------------------------------------------------------------- /dpdk/test/test/test_lpm6_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_lpm6_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_lpm_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_lpm_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_malloc.c -------------------------------------------------------------------------------- /dpdk/test/test/test_mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_mbuf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_member.c -------------------------------------------------------------------------------- /dpdk/test/test/test_member_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_member_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_memcpy.c -------------------------------------------------------------------------------- /dpdk/test/test/test_memcpy_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_memcpy_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_memory.c -------------------------------------------------------------------------------- /dpdk/test/test/test_mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_mempool.c -------------------------------------------------------------------------------- /dpdk/test/test/test_memzone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_memzone.c -------------------------------------------------------------------------------- /dpdk/test/test/test_meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_meter.c -------------------------------------------------------------------------------- /dpdk/test/test/test_per_lcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_per_lcore.c -------------------------------------------------------------------------------- /dpdk/test/test/test_pmd_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_pmd_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_pmd_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_pmd_ring.c -------------------------------------------------------------------------------- /dpdk/test/test/test_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_power.c -------------------------------------------------------------------------------- /dpdk/test/test/test_prefetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_prefetch.c -------------------------------------------------------------------------------- /dpdk/test/test/test_rawdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_rawdev.c -------------------------------------------------------------------------------- /dpdk/test/test/test_red.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_red.c -------------------------------------------------------------------------------- /dpdk/test/test/test_reorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_reorder.c -------------------------------------------------------------------------------- /dpdk/test/test/test_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_resource.c -------------------------------------------------------------------------------- /dpdk/test/test/test_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_ring.c -------------------------------------------------------------------------------- /dpdk/test/test/test_ring_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_ring_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_rwlock.c -------------------------------------------------------------------------------- /dpdk/test/test/test_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_sched.c -------------------------------------------------------------------------------- /dpdk/test/test/test_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_spinlock.c -------------------------------------------------------------------------------- /dpdk/test/test/test_string_fns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_string_fns.c -------------------------------------------------------------------------------- /dpdk/test/test/test_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_table.c -------------------------------------------------------------------------------- /dpdk/test/test/test_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_table.h -------------------------------------------------------------------------------- /dpdk/test/test/test_table_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_table_acl.c -------------------------------------------------------------------------------- /dpdk/test/test/test_table_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_table_acl.h -------------------------------------------------------------------------------- /dpdk/test/test/test_table_ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_table_ports.c -------------------------------------------------------------------------------- /dpdk/test/test/test_table_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_table_ports.h -------------------------------------------------------------------------------- /dpdk/test/test/test_tailq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_tailq.c -------------------------------------------------------------------------------- /dpdk/test/test/test_thash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_thash.c -------------------------------------------------------------------------------- /dpdk/test/test/test_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_timer.c -------------------------------------------------------------------------------- /dpdk/test/test/test_timer_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_timer_perf.c -------------------------------------------------------------------------------- /dpdk/test/test/test_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_version.c -------------------------------------------------------------------------------- /dpdk/test/test/test_xmmt_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/test_xmmt_ops.h -------------------------------------------------------------------------------- /dpdk/test/test/virtual_pmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/virtual_pmd.c -------------------------------------------------------------------------------- /dpdk/test/test/virtual_pmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/test/test/virtual_pmd.h -------------------------------------------------------------------------------- /dpdk/usertools/cpu_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/usertools/cpu_layout.py -------------------------------------------------------------------------------- /dpdk/usertools/dpdk-devbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/usertools/dpdk-devbind.py -------------------------------------------------------------------------------- /dpdk/usertools/dpdk-pmdinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/usertools/dpdk-pmdinfo.py -------------------------------------------------------------------------------- /dpdk/usertools/dpdk-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/usertools/dpdk-setup.sh -------------------------------------------------------------------------------- /dpdk/usertools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/dpdk/usertools/meson.build -------------------------------------------------------------------------------- /jupiter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/jupiter.cfg -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/libcmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libcmd/Makefile -------------------------------------------------------------------------------- /lib/libcmd/unixctl_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libcmd/unixctl_command.c -------------------------------------------------------------------------------- /lib/libcmd/unixctl_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libcmd/unixctl_command.h -------------------------------------------------------------------------------- /lib/libconhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/LICENSE -------------------------------------------------------------------------------- /lib/libconhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/Makefile -------------------------------------------------------------------------------- /lib/libconhash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/README -------------------------------------------------------------------------------- /lib/libconhash/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/configure.h -------------------------------------------------------------------------------- /lib/libconhash/conhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/conhash.c -------------------------------------------------------------------------------- /lib/libconhash/conhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/conhash.h -------------------------------------------------------------------------------- /lib/libconhash/conhash_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/conhash_inter.c -------------------------------------------------------------------------------- /lib/libconhash/conhash_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/conhash_inter.h -------------------------------------------------------------------------------- /lib/libconhash/conhash_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/conhash_util.c -------------------------------------------------------------------------------- /lib/libconhash/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/md5.c -------------------------------------------------------------------------------- /lib/libconhash/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/md5.h -------------------------------------------------------------------------------- /lib/libconhash/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/sample.c -------------------------------------------------------------------------------- /lib/libconhash/util_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/util_rbtree.c -------------------------------------------------------------------------------- /lib/libconhash/util_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/lib/libconhash/util_rbtree.h -------------------------------------------------------------------------------- /linux-toa-3.10.0-327.el7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/linux-toa-3.10.0-327.el7.patch -------------------------------------------------------------------------------- /rpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiglabs/jupiter/HEAD/rpm.spec --------------------------------------------------------------------------------