diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-07-08 16:45:54 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-07-08 16:45:54 +0200 |
| commit | 35f097a31e1c58892a69178b84ddba658efe9c8f (patch) | |
| tree | 2da7d86cd4e3b7dd811746b1206bd5bbb90d59a7 /results/classifier/no-thinking-deepseek-r1:70b/reasoning/syscall/1858461 | |
| parent | 5aa276efcbd67f4300ca1a7f809c6e00aadb03da (diff) | |
| download | emulator-bug-study-35f097a31e1c58892a69178b84ddba658efe9c8f.tar.gz emulator-bug-study-35f097a31e1c58892a69178b84ddba658efe9c8f.zip | |
manually review misclassifications
Diffstat (limited to 'results/classifier/no-thinking-deepseek-r1:70b/reasoning/syscall/1858461')
| -rw-r--r-- | results/classifier/no-thinking-deepseek-r1:70b/reasoning/syscall/1858461 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/results/classifier/no-thinking-deepseek-r1:70b/reasoning/syscall/1858461 b/results/classifier/no-thinking-deepseek-r1:70b/reasoning/syscall/1858461 new file mode 100644 index 00000000..e28c5d30 --- /dev/null +++ b/results/classifier/no-thinking-deepseek-r1:70b/reasoning/syscall/1858461 @@ -0,0 +1,7 @@ +The issue revolves around adding a new system call (syscall) to QEMU for MIPS architecture and encountering an ENOSYS error, indicating that the system call is not recognized. The user attempted to modify `mips_syscall_args` but was unsuccessful because the current implementation in `cpu_loop.c` does not properly handle the new syscall number. + +The problem lies in how syscalls are managed in QEMU's MIPS emulation compared to ARM. While ARM has a structured approach with `ARM_NR_BASE`, MIPS lacks such an organization, leading to the ENOSYS error when the new syscall is called. + +Refactoring the MIPS CPU loop to align with ARM's structure would resolve this issue by ensuring that the new syscall is correctly recognized and handled. This involves updating how syscall numbers are mapped and processed in the MIPS-specific code. + +The categorization of this bug report falls under **syscall**, as it directly pertains to an error related to system calls within QEMU's emulation layer. \ No newline at end of file |