~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/drivers/net/mlxsw/vxlan_ipv6.sh

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #!/bin/bash
  2 # SPDX-License-Identifier: GPL-2.0
  3 
  4 # A wrapper to run VXLAN test for IPv6.
  5 
  6 ADDR_FAMILY=ipv6
  7 LOCAL_IP_1=2001:db8:1::1
  8 LOCAL_IP_2=2001:db8:1::2
  9 PREFIX_LEN=128
 10 UDPCSUM_FLAFS="udp6zerocsumrx udp6zerocsumtx"
 11 MC_IP=FF02::2
 12 IP_FLAG="-6"
 13 
 14 ALL_TESTS="
 15         sanitization_test
 16         offload_indication_test
 17         sanitization_vlan_aware_test
 18         offload_indication_vlan_aware_test
 19 "
 20 
 21 sanitization_single_dev_learning_enabled_ipv6_test()
 22 {
 23         RET=0
 24 
 25         ip link add dev br0 type bridge mcast_snooping 0
 26 
 27         ip link add name vxlan0 up type vxlan id 10 learning $UDPCSUM_FLAFS \
 28                 ttl 20 tos inherit local $LOCAL_IP_1 dstport 4789
 29 
 30         sanitization_single_dev_test_fail
 31 
 32         ip link del dev vxlan0
 33         ip link del dev br0
 34 
 35         log_test "vxlan device with learning enabled"
 36 }
 37 
 38 sanitization_single_dev_udp_checksum_ipv6_test()
 39 {
 40         RET=0
 41 
 42         ip link add dev br0 type bridge mcast_snooping 0
 43 
 44         ip link add name vxlan0 up type vxlan id 10 nolearning \
 45                 noudp6zerocsumrx udp6zerocsumtx ttl 20 tos inherit \
 46                 local $LOCAL_IP_1 dstport 4789
 47 
 48         sanitization_single_dev_test_fail
 49         log_test "vxlan device without zero udp checksum at RX"
 50 
 51         ip link del dev vxlan0
 52 
 53         ip link add name vxlan0 up type vxlan id 10 nolearning \
 54                 udp6zerocsumrx noudp6zerocsumtx ttl 20 tos inherit \
 55                 local $LOCAL_IP_1 dstport 4789
 56 
 57         sanitization_single_dev_test_fail
 58         log_test "vxlan device without zero udp checksum at TX"
 59 
 60         ip link del dev vxlan0
 61         ip link del dev br0
 62 
 63 }
 64 
 65 source vxlan.sh

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php