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
when running cmd make A=apps/c/python3 ARCH=aarch64 V9P=y NET=y MUSL=y LOG=off run :
qemu-system-aarch64: Failed to decode VirtFS request type 50
and type 50 means fsync.
The backend error is like this:
The text was updated successfully, but these errors were encountered:
ken4647
changed the title
An virtfs error occurs when running python when SMP=1.
An virtfs(9p) error occurs when running python when SMP=1.
Jul 5, 2024
ken4647
changed the title
An virtfs(9p) error occurs when running python when SMP=1.
An virtfs(9p) backend error occurs when running python when SMP=1.
Jul 5, 2024
fsync tells the server to flush any cached data associated with fid, previously opened with lopen.
However, in 9p client on linux, it is implemented like this:
size[4] Tfsync tag[2] fid[4] datasync[4]
This may be due to some problems or requirements that have caused the operation specifications of 9p's fsync to change, so our interface also needs to be patched accordingly.
when running cmd
make A=apps/c/python3 ARCH=aarch64 V9P=y NET=y MUSL=y LOG=off run
:qemu-system-aarch64: Failed to decode VirtFS request type 50
and type 50 means fsync.
The backend error is like this:
The text was updated successfully, but these errors were encountered: