[ { "id": "b1e9", "name": "Test matching of source IP", "category": [ "actions", "scapy" ], "plugins": { "requires": [ "nsPlugin", "scapyPlugin" ] }, "setup": [ [ "$TC qdisc del dev $DEV1 ingress", 0, 1, 2, 255 ], "$TC qdisc add dev $DEV1 ingress" ], "cmdUnderTest": "$TC filter add dev $DEV1 parent ffff: prio 3 protocol ip flower src_ip 16.61.16.61 flowid 1:1 action ok", "scapy": { "iface": "$DEV0", "count": 1, "packet": "Ether(type=0x800)/IP(src='16.61.16.61')/ICMP()" }, "expExitCode": "0", "verifyCmd": "$TC -s -j filter ls dev $DEV1 ingress prio 3", "matchJSON": [ { "path": [ 1, "options", "actions", 0, "stats", "packets" ], "value": 1 } ], "teardown": [ "$TC qdisc del dev $DEV1 ingress" ] }, { "id": "e9c4", "name": "Test matching of source IP with wrong count", "category": [ "actions", "scapy" ], "plugins": { "requires": [ "nsPlugin", "scapyPlugin" ] }, "setup": [ [ "$TC qdisc del dev $DEV1 ingress", 0, 1, 2, 255 ], "$TC qdisc add dev $DEV1 ingress" ], "cmdUnderTest": "$TC filter add dev $DEV1 parent ffff: prio 3 protocol ip flower src_ip 16.61.16.61 flowid 1:1 action ok", "scapy": { "iface": "$DEV0", "count": 3, "packet": "Ether(type=0x800)/IP(src='16.61.16.61')/ICMP()" }, "expExitCode": "0", "verifyCmd": "$TC -s -j filter ls dev $DEV1 parent ffff:", "matchJSON": [ { "path": [ 1, "options", "actions", 0, "stats", "packets" ], "value": 1 } ], "teardown": [ "$TC qdisc del dev $DEV1 ingress" ] } ] e='clkdev' selected='selected'>clkdev Russell King's ARM Linux kernel treeRussell King
summaryrefslogtreecommitdiff
path: root/include/linux/screen_info.h
AgeCommit message (Expand)Author
2014-10-09include/linux/screen_info.h: remove unused ORIG_* macrosGeert Uytterhoeven
2012-10-13UAPI: (Scripted) Disintegrate include/linuxDavid Howells
2012-09-17efifb: Skip DMI checks if the bootloader knows what it's doingMatthew Garrett
2009-11-13x86, setup: Store the boot cursor stateMatthew Garrett
2007-11-29x86_64 EFI boot support: EFI frame buffer driverHuang, Ying
2007-10-23Make asm-x86/bootparam.h includable from userspace.Rusty Russell
2007-10-16Remove magic macros for screen_info structure membersH. Peter Anvin