blob: fdf8473530cc2cc53d482738136520fcb83276c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<think>
Alright, I'm looking at this bug report related to QEMU. The user is encountering a segfault when using vm86() under certain conditions—specifically, when an interrupt occurs while cs:ip and ss:sp are on the same page.
The problem happens in QEMU 5.2.0 on an x86-64 host. The issue arises because do_int tries to write to a non-writable page. So it's related to memory management during interrupt handling.
Looking at the categories, 'runtime' seems appropriate here since this is an error that occurs while the program is running, not necessarily due to a faulty instruction or a syscall issue.
</think>
runtime
|