You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, on GitHub action, the status-checks report the error:
...
Running startstop
Running static_key
Running syscall-steal
.ci/build-n-run.sh: line 17: 8630 Segmentation fault (core dumped) sudo insmod "examples/$1.ko"
Error: Process completed with exit code 1.
GitHub action uses v6.8 and Ubuntu 24.04.
However, there are no issues when running the code on my laptop, which is also v6.8 with 6.8.0-45-generic Ubuntu 24.04 LTS.
After investigating the kernel messages, it probably came from various platforms, the write operation to the syscall table, or __write_cr0(). And, here is the log:
I didn't investigate deeply, but now it seems to work well again.
However, I think moving syscall-steal to non-working would be ok since after v6.9 (specifically after commit) syscall-steal won't work due to the original method, an indirect call, has been replaced by the switch statement.
Currently, on GitHub action, the status-checks report the error:
GitHub action uses v6.8 and Ubuntu 24.04.
However, there are no issues when running the code on my laptop, which is also v6.8 with 6.8.0-45-generic Ubuntu 24.04 LTS.
After investigating the kernel messages, it probably came from various platforms, the write operation to the syscall table, or
__write_cr0()
. And, here is the log:To get this log, we can simply add
sudo dmesg
before exiting in.ci/build-n-run.sh
.Here are some related patch and commit:
The text was updated successfully, but these errors were encountered: