hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/tools/testing/selftests/tc-testing/tdc_config.py
....@@ -10,15 +10,21 @@
1010 NAMES = {
1111 # Substitute your own tc path here
1212 'TC': '/sbin/tc',
13
+ # Substitute your own ip path here
14
+ 'IP': '/sbin/ip',
1315 # Name of veth devices to be created for the namespace
1416 'DEV0': 'v0p0',
1517 'DEV1': 'v0p1',
1618 'DEV2': '',
19
+ 'DUMMY': 'dummy1',
1720 'BATCH_FILE': './batch.txt',
21
+ 'BATCH_DIR': 'tmp',
22
+ # Length of time in seconds to wait before terminating a command
23
+ 'TIMEOUT': 12,
1824 # Name of the namespace to use
1925 'NS': 'tcut',
2026 # Directory containing eBPF test programs
21
- 'EBPFDIR': './bpf'
27
+ 'EBPFDIR': './'
2228 }
2329
2430