Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | [ { "id": "9903", "name": "Add mqprio Qdisc to multi-queue device (8 queues)", "category": [ "qdisc", "mqprio" ], "plugins": { "requires": "nsPlugin" }, "setup": [ "echo \"1 1 8\" > /sys/bus/netdevsim/new_device" ], "cmdUnderTest": "$TC qdisc add dev $ETH root handle 1: mqprio num_tc 8 map 0 1 2 3 4 5 6 7 queues 1@0 1@1 1@2 1@3 1@4 1@5 1@6 1@7 hw 0", "expExitCode": "0", "verifyCmd": "$TC qdisc show dev $ETH", "matchPattern": "qdisc mqprio 1: root tc 8 map 0 1 2 3 4 5 6 7 0 0 0 0 0 0 0 0.*queues:\\(0:0\\) \\(1:1\\) \\(2:2\\) \\(3:3\\) \\(4:4\\) \\(5:5\\) \\(6:6\\) \\(7:7\\)", "matchCount": "1", "teardown": [ "echo \"1\" > /sys/bus/netdevsim/del_device" ] }, { "id": "453a", "name": "Delete nonexistent mqprio Qdisc", "category": [ "qdisc", "mqprio" ], "plugins": { "requires": "nsPlugin" }, "setup": [ "echo \"1 1 4\" > /sys/bus/netdevsim/new_device" ], "cmdUnderTest": "$TC qdisc del dev $ETH root handle 1: mqprio", "expExitCode": "2", "verifyCmd": "$TC qdisc show dev $ETH", "matchPattern": "qdisc mqprio 1: root", "matchCount": "0", "teardown": [ "echo \"1\" > /sys/bus/netdevsim/del_device" ] }, { "id": "5292", "name": "Delete mqprio Qdisc twice", "category": [ "qdisc", "mqprio" ], "plugins": { "requires": "nsPlugin" }, "setup": [ "echo \"1 1 8\" > /sys/bus/netdevsim/new_device", "$TC qdisc add dev $ETH root handle 1: mqprio num_tc 8 map 0 1 2 3 4 5 6 7 queues 1@0 1@1 1@2 1@3 1@4 1@5 1@6 1@7 hw 0", "$TC qdisc del dev $ETH root handle 1:" ], "cmdUnderTest": "$TC qdisc del dev $ETH root handle 1:", "expExitCode": "2", "verifyCmd": "$TC qdisc show dev $ETH", "matchPattern": "qdisc mqprio 1: root", "matchCount": "0", "teardown": [ "echo \"1\" > /sys/bus/netdevsim/del_device" ] }, { "id": "45a9", "name": "Add mqprio Qdisc to single-queue device", "category": [ "qdisc", "mqprio" ], "plugins": { "requires": "nsPlugin" }, "setup": [ "echo \"1 1\" > /sys/bus/netdevsim/new_device" ], "cmdUnderTest": "$TC qdisc add dev $ETH root handle 1: mqprio num_tc 8 map 0 1 2 3 4 5 6 7 queues 1@0 1@1 1@2 1@3 1@4 1@5 1@6 1@7 hw 0", "expExitCode": "2", "verifyCmd": "$TC qdisc show dev $ETH", "matchPattern": "qdisc mqprio 1: root", "matchCount": "0", "teardown": [ "echo \"1\" > /sys/bus/netdevsim/del_device" ] }, { "id": "2ba9", "name": "Show mqprio class", "category": [ "qdisc", "mqprio" ], "plugins": { "requires": "nsPlugin" }, "setup": [ "echo \"1 1 8\" > /sys/bus/netdevsim/new_device" ], "cmdUnderTest": "$TC qdisc add dev $ETH root handle 1: mqprio num_tc 8 map 0 1 2 3 4 5 6 7 queues 1@0 1@1 1@2 1@3 1@4 1@5 1@6 1@7 hw 0", "expExitCode": "0", "verifyCmd": "$TC class show dev $ETH", "matchPattern": "class mqprio 1:", "matchCount": "16", "teardown": [ "echo \"1\" > /sys/bus/netdevsim/del_device" ] } ] |