On 6/2/21 8:53 PM, Jason Thorpe wrote:
- if ((val & PCI_BASE_ADDRESS_MEM_TYPE_MASK) + if ((old & PCI_BASE_ADDRESS_SPACE_IO) == 0 &&
The correct test is (old & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_MEMORY Bitwise it's the same thing. I'll fix it up while applying. r~