From: bugzilla@dpdk.org
To: dev@dpdk.org
Subject: [dpdk-dev] [Bug 448] Post-copy-Live migration with 8 vhost queues succeeds with warning from QEMU
Date: Mon, 13 Apr 2020 09:29:19 +0000 [thread overview]
Message-ID: <bug-448-3@http.bugs.dpdk.org/> (raw)
https://bugs.dpdk.org/show_bug.cgi?id=448
Bug ID: 448
Summary: Post-copy-Live migration with 8 vhost queues succeeds
with warning from QEMU
Product: DPDK
Version: 20.02
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: Normal
Component: vhost/virtio
Assignee: dev@dpdk.org
Reporter: sunil.pai.g@intel.com
Target Milestone: ---
Overview:
Even though Post-copy Live migration succeeds, QEMU reports the following
warning with 8 vhost queues:
qemu-system-x86_64: vhost_user_set_mem_table_postcopy: Received unexpected msg
type.Expected 5 received 30
qemu-system-x86_64: vhost_set_mem_table failed: Resource temporarily
unavailable (11)
qemu-system-x86_64: unable to start vhost net: 11: falling back on userspace
virtio
Steps to Reproduce:
1.download and build dpdk for x86_64-native-linuxapp-gcc with
CONFIG_RTE_LIBRTE_VHOST_POSTCOPY=y on both source and destination host.
2.Set 8192 2MB huge pages on both destination and source host
3.Run DPDK's Testpmd application on source:
./testpmd -m 512 --file-prefix=src -l 0,2 -n 4 --vdev
'net_vhost0,iface=/tmp/vu-src,queues=8' -- --portmask=1 -i --rxq=8 --txq=8
--nb-cores=1 --eth-peer=0,52:54:00:11:22:12 --no-mlockall
4.Run DPDK's Testpmd application on destination:
./testpmd -m 512 --file-prefix=dst -l 0,2 -n 4 --vdev
'net_vhost0,iface=/tmp/vu-dst,queues=8,postcopy-support=1' -- --portmask=1 -i
--rxq=8 --txq=8 --nb-cores=1 --eth-peer=0,52:54:00:11:22:12 --no-mlockall
5.Run QEMU on src host:
export VM_NAME=vhost-vm
export GUEST_MEM=4096M
export VM_PATH=~/Downloads/grpc-2.qcow2
export qemu_queues=8
export qemu_vectors=18
export QEMU=~/qemu-latest/qemu/x86_64-softmmu/qemu-system-x86_64
taskset -c 5-8 $QEMU -name $vhost-vm -cpu host -enable-kvm \
-m $GUEST_MEM -drive file=$VM_PATH --nographic \
-numa node,memdev=mem -mem-prealloc -smp sockets=1,cores=4 \
-object
memory-backend-file,id=mem,size=$GUEST_MEM,mem-path=/dev/hugepages,share=on \
-chardev socket,id=char0,path=/tmp/vu-src \
-netdev
type=vhost-user,id=mynet1,chardev=char0,vhostforce,queues=$qemu_queues \
-device
virtio-net-pci,mac=00:00:00:00:00:01,netdev=mynet1,mq=on,mrg_rxbuf=on,rx_queue_size=1024,tx_queue_size=1024,vectors=$qemu_vectors
\
-monitor telnet::1234,server,nowait \
-net user,hostfwd=tcp::10023-:22 -net nic &
6.Run QEMU on dst host:
export VM_NAME=vhost-vm
export GUEST_MEM=4096M
export VM_PATH=~/Downloads/grpc-2.qcow2
export qemu_queues=8
export qemu_vectors=18
export QEMU=~/qemu-latest/qemu/x86_64-softmmu/qemu-system-x86_64
taskset -c 5-8 $QEMU -name $VM_NAME -cpu host -enable-kvm \
-m $GUEST_MEM -drive file=$VM_PATH --nographic \
-numa node,memdev=mem -mem-prealloc -smp sockets=1,cores=4 \
-object
memory-backend-file,id=mem,size=$GUEST_MEM,mem-path=/dev/hugepages,share=on \
-chardev socket,id=char0,path=/tmp/vu-src \
-netdev
type=vhost-user,id=mynet1,chardev=char0,vhostforce,queues=$qemu_queues \
-device
virtio-net-pci,mac=00:00:00:00:00:01,netdev=mynet1,mq=on,mrg_rxbuf=on,rx_queue_size=1024,tx_queue_size=1024,vectors=$qemu_vectors
\
-monitor telnet::1234,server,nowait \
-incoming tcp:0:4444 \
-net user,hostfwd=tcp::10023-:22 -net nic &
7.In both testpmd prompts, start flooding the virtio-net device:
testpmd> set fwd txonly
testpmd> start
8.In destination's Qemu monitor, enable postcopy:
(qemu) migrate_set_capability postcopy-ram on
9.In source's Qemu monitor, enable postcopy and launch migration:
(qemu) migrate_set_capability postcopy-ram on
(qemu) migrate -d tcp:<dst host ip>:4444
(qemu) migrate_start_postcopy
Actual Results:
Even though migration succeeds, on dst host following message is seen on
console:
qemu-system-x86_64: vhost_user_set_mem_table_postcopy: Received unexpected msg
type.Expected 5 received 30
qemu-system-x86_64: vhost_set_mem_table failed: Resource temporarily
unavailable (11)
qemu-system-x86_64: unable to start vhost net: 11: falling back on userspace
virtio
Expected Results:
No Warning or error messages from QEMU
Version information:
QEMU-version: master branch [v5.0.0-rc1]
DPDK-version: master branch [v20.02]
Environment Information:
Operating System: Ubuntu 18.04.4 LTS
Kernel: Linux 4.15.0-74-generic
Architecture: x86-64
Additional information:
This error is not seen when number of vhost queues is set to 1
--
You are receiving this mail because:
You are the assignee for the bug.
reply other threads:[~2020-04-13 9:30 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=bug-448-3@http.bugs.dpdk.org/ \
--to=bugzilla@dpdk.org \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.