On 10 October 2017 at 09:02, Kevin Wolf <kw...@redhat.com> wrote: > Assertions are for checking that assumptions in qemu code hold true. > Here it's about bad guest code, and you can't let qemu abort for that. > > Tracing is the right tool to detect bad guest code, and I think it makes > sense to mark conditions that shouldn't happen with a correctly > operating guest driver. I'm not sure if an exclamation mark is the best > syntax for this, because I wouldn't have intuitively understood what > it's supposed to tell me.
We have qemu_log_mask(LOG_GUEST_ERROR, ...) for logging guest errors, so I think we should use that. thanks -- PMM