Lines Matching defs:port
2283 * for I/O port accesses.
5922 * Return true if an IO instruction with the specified port and size should cause
5925 bool nested_vmx_check_io_bitmaps(struct kvm_vcpu *vcpu, unsigned int port,
5936 if (port < 0x8000)
5938 else if (port < 0x10000)
5942 bitmap += (port & 0x7fff) / 8;
5947 if (b & (1 << (port & 7)))
5950 port++;
5962 unsigned short port;
5970 port = exit_qualification >> 16;
5973 return nested_vmx_check_io_bitmaps(vcpu, port, size);