On 8/28/19 4:10 AM, David Hildenbrand wrote: > + * If the access is permitted, returns the host address similar to > + * tlb_vaddr_to_host(). Returns NULL in case direct access to the host page > + * is not allowed or if the size is 0.
Maybe we can find some better language -- "not allowed" sounds like a permissions check, and we longjmp out on permission check failures. Perhaps "if the page requires i/o access"? Why are you returning NULL for size 0? Just because the caller hasn't committed to a size and thus we haven't checked watchpoints? r~