virtio-fs 및 qemu 사용 중 오류: "msg 헤더를 읽을 수 없습니다. 12 대신 0을 읽으십시오. 원래 요청 1."

virtio-fs 및 qemu 사용 중 오류: "msg 헤더를 읽을 수 없습니다. 12 대신 0을 읽으십시오. 원래 요청 1."

나는 사용하려고virtio-fs게스트의 호스트에 폴더를 마운트하는 중인데 문제가 있습니다.

호스트 컴퓨터에는 qemu 1:5.0-5ubuntu6이 있습니다.

virtiofsd 명령 및 출력:

/usr/lib/qemu/virtiofsd -f -d -o allow_root \
    --socket-path="/run/image_builder-base.sock" \
    -o source="/tmp/tmpxwx3urnz/merged" 

[74585059694946] [ID: 00000791] virtio_session_mount: Received vhost-user socket connection
[74585059757200] [ID: 00000791] capng_get_caps_process

qemu 명령 및 출력:

qemu-system-x86_64 -m 2G -enable-kvm -cpu host -serial stdio \
    -kernel "boot/vmlinuz-5.4.0-47-generic" -initrd "boot/initramfs-5.4.0-47-generic.img" \
    -append "root=root_image_fs rootfstype=virtiofs rw" \
    -chardev socket,id=char0,path=/run/image_builder-base.sock \
    -device vhost-user-fs-pci,chardev=char0,tag=root_image_fs \
    -object memory-backend-file,id=mem,size=2G,mem-path=/dev/shm,share=on -numa node,memdev=mem

qemu-system-x86_64: -device vhost-user-fs-pci,chardev=char0,tag=root_image_fs: Failed to read msg header. Read 0 instead of 12. Original request 1.
qemu-system-x86_64: -device vhost-user-fs-pci,chardev=char0,tag=root_image_fs: vhost_dev_init failed: Operation not permitted

어떻게 작동하게 할 수 있나요? 아니면 이 문제를 어떻게 디버깅할 수 있나요?

답변1

qemu-system-x86 1:5.0-5ubuntu9로 업그레이드하면 문제가 해결되었습니다.

관련 정보