aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/dev_octeon
AgeCommit message (Expand)AuthorFilesLines
2024-07-15octeon: fix link down issueAlok Mishra1-0/+12
2024-06-25dev: move bus code to bus/Damjan Marion4-4/+1
2024-06-11octeon: add clear counters for port and queuesMonendra Singh Kushwaha3-0/+48
2024-06-10octeon: add support for vnet generic flow typeSriram Vatala2-0/+392
2024-06-10octeon: add counters support for port and queueMonendra Singh Kushwaha4-0/+322
2024-06-10octeon: update trace to use qid instead of qMonendra Singh Kushwaha1-1/+1
2024-06-10octeon: enable vf device promiscuous mode featureHarish Malik1-1/+4
2024-05-29octeon: convert link speed from Mbps to KbpsMonendra Singh Kushwaha1-1/+2
2024-05-28octeon: add support for Marvell Octeon9 SoCMonendra Singh Kushwaha4-2/+100
2024-05-28octeon: fix lbk vf initializationMonendra Singh Kushwaha1-0/+1
2024-05-13octeon: add support for mac address updateAlok Mishra1-0/+41
2024-05-06octeon: fix rvu vf device idMonendra Singh Kushwaha2-1/+3
2024-05-06octeon: add max packet length checkMonendra Singh Kushwaha2-2/+27
2024-05-06octeon: fix buffer free for more than 6 segmentMonendra Singh Kushwaha1-27/+37
2024-05-01octeon: fix roc_nix_npc_mac_addr_get() return value checkDamjan Marion1-1/+1
2024-04-23octeon: add promisc supportGuillaume Solignac1-0/+41
2024-04-22octeon: add support for SDP deviceMonendra Singh Kushwaha2-6/+15
2024-04-05octeon: fix memory ordering issue in tx batch freeDamjan Marion4-19/+42
2024-04-05octeon: fix buffer free on full tx ringDamjan Marion1-4/+4
2024-04-01octeon: specify pool when alloc buffersDamjan Marion1-1/+2
2024-04-01octeon: refill even if nothing dequeued from rx queueDamjan Marion1-5/+6
2024-03-05octeon: add support for VF deviceMonendra Singh Kushwaha3-6/+19
2024-02-28octeon: add flow offload infraMonendra Singh Kushwaha7-3/+581
2024-01-17octeon: native driver for Marvell Octeon SoCDamjan Marion11-0/+2501
lass="c1"># distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Test variables for DHCP relay test suite.""" # IPv4 addresses used in traffic tests dut_to_tg_if1_ip = "172.16.0.1" dut_to_tg_if2_ip = "192.168.0.1" dhcp_server1_ip = "192.168.0.100" dhcp_server2_ip = "192.168.0.101" client_ip = "172.16.0.2" prefix_length = 24 # IPv6 addresses used in traffic tests dut_to_tg_if1_ip6 = "3ffe:62::1" dut_to_tg_if2_ip6 = "3ffe:63::1" dhcp_server_ip6 = "3ffe:63::2" client_ip6 = "3ffe:62::2" prefix_length_v6 = 64 # DHCP relay configuration relay1 = { "relay": [ { "address-family": "vpp-fib-table-management:ipv4", "rx-vrf-id": 0, "gateway-address": dut_to_tg_if1_ip, "server": [ { "vrf-id": 0, "address": dhcp_server1_ip }, ] } ] } relay1_oper = { "address-family": "vpp-fib-table-management:ipv4", "rx-vrf-id": 0, "gateway-address": dut_to_tg_if1_ip, "server": [ { "vrf-id": 0, "address": dhcp_server1_ip } ] } relay2 = { "relay": [ { "address-family": "vpp-fib-table-management:ipv4", "rx-vrf-id": 0, "gateway-address": dut_to_tg_if1_ip, "server": [ { "vrf-id": 0, "address": dhcp_server1_ip }, { "vrf-id": 0, "address": dhcp_server2_ip }, ] } ] } relay2_oper = { "address-family": "vpp-fib-table-management:ipv4", "rx-vrf-id": 0, "gateway-address": dut_to_tg_if1_ip, "server": [ { "vrf-id": 0, "address": dhcp_server1_ip }, { "vrf-id": 0, "address": dhcp_server2_ip } ] } relay_v6 = { "relay": [ { "address-family": "vpp-fib-table-management:ipv6", "rx-vrf-id": 0, "gateway-address": dut_to_tg_if1_ip6, "server": [ { "vrf-id": 0, "address": dhcp_server_ip6 }, ] } ] } relay_v6_oper = { "address-family": "vpp-fib-table-management:ipv6", "rx-vrf-id": 0, "gateway-address": dut_to_tg_if1_ip6, "server": [ { "vrf-id": 0, "address": dhcp_server_ip6 } ] }