Home
last modified time | relevance | path

Searched refs:VM86_TYPE (Results 1 – 2 of 2) sorted by relevance

/linux/tools/testing/selftests/x86/
H A Dentry_from_vm86.c130 if (VM86_TYPE(ret) == VM86_INTx) { in do_test()
143 } else if (VM86_TYPE(ret) == VM86_UNKNOWN) { in do_test()
145 } else if (VM86_TYPE(ret) == VM86_TRAP) { in do_test()
148 } else if (VM86_TYPE(ret) == VM86_SIGNAL) { in do_test()
150 } else if (VM86_TYPE(ret) == VM86_STI) { in do_test()
154 VM86_TYPE(ret), VM86_ARG(ret)); in do_test()
158 (VM86_TYPE(ret) == rettype && VM86_ARG(ret) == retarg)) { in do_test()
/linux/arch/x86/include/uapi/asm/
H A Dvm86.h30 #define VM86_TYPE(retval) ((retval) & 0xff) macro