Hi, I am working with Cloud Hypervisor (github<https://github.com/cloud-hypervisor/cloud-hypervisor>) VMM. We have a use case of live migration of VM using ovs-dpdk as back end. This test used to work on Ubuntu 20.04 but it fails on Ubuntu 22.04 host. Is it a right place to report bugs?
Issue ------- Issue in Cloud Hypervisor:https://github.com/cloud-hypervisor/cloud-hypervisor/issues/5532 Test case from Cloud Hypervisor:https://github.com/cloud-hypervisor/cloud-hypervisor/blob/d5b813838c8c29de05ff9ce443951ed66c334bfa/tests/integration.rs#L9457 Test setup in docker container can be found here:https://github.com/cloud-hypervisor/cloud-hypervisor/blob/d5b813838c8c29de05ff9ce443951ed66c334bfa/tests/integration.rs#L711 Host: Ubuntu 22.04 Initial setup of ovs-dpdk ------------------------------ sudo service openvswitch-switch start sudo ovs-vsctl init sudo ovs-vsctl set Open_vSwitch . other_config:dpdk-init=true sudo service openvswitch-switch restart sudo ovs-vsctl add-br ovsbr0 -- set bridge ovsbr0 datapath_type=netdev sudo ovs-vsctl add-port ovsbr0 vhost-user2 -- set Interface vhost-user2 type=dpdkvhostuserclient options:vhost-server-path=/tmp/dpdkvhostclient2 sudo ip link set up dev ovsbr0 sudo service openvswitch-switch restart Launch the VM using Cloud Hypervisor ------------------------------------------------- target/debug/cloud-hypervisor --api-socket /tmp/cloud-hypervisor.sock --cpus boot=2 --memory size=0,shared=on --memory-zone id=mem0,size=1G,shared=on,host_numa_node=0 --kernel /tmp/vmlinux --cmdline "root=/dev/vda1 console=hvc0 rw systemd.journald.forward_to_console=1" --disk path=/tmp/focal-server-cloudimg-amd64-custom-20210609-0.raw path=/tmp/ubuntu-cloudinit.img --net tap=,mac=12:34:56:78:90:01,ip=192.168.1.1,mask=255.255.255.0 vhost_user=true,socket=/tmp/dpdkvhostclient2,num_queues=2,queue_size=256,vhost_mode=server -v Launch the destination VM ------------------------- target/debug/cloud-hypervisor --api-socket /tmp/cloud-hypervisor.sock.dest -v Get ready for receiving migration for the destination VM -------------------------------------------------------- target/debug/ch-remote --api-socket /tmp/cloud-hypervisor.sock.dest receive-migration unix:/tmp/live-migration.sock Start to send migration for the source VM ----------------------------------------- target/debug/ch-remote --api-socket /tmp/cloud-hypervisor.sock send-migration unix:/tmp/live-migration.sock Please observe these two logs from ovs-vswitchd.log ------------------------------------------------------------------ 2024-01-16T14:26:04.544Z|00022|dpdk|ERR|eth_virtio_pci_init(): Failed to init PCI device 2024-01-16T14:26:04.544Z|00023|dpdk|ERR|EAL: Requested device 0000:00:03.0 cannot be used Logs from /var/log/openvswitch/ovs-vswitchd.log -------------------------------------------------------------- 2024-01-15T22:00:36.005Z|00030|vlog|INFO|opened log file /var/log/openvswitch/ovs-vswitchd.log 2024-01-16T14:25:46.683Z|00031|pmd_perf|INFO|DPDK provided TSC frequency: 2000000 KHz 2024-01-16T14:25:46.695Z|00032|dpif_netdev_extract|INFO|Default MFEX Extract implementation is scalar. 2024-01-16T14:25:46.701Z|00033|dpif_netdev_impl|INFO|Default DPIF implementation is dpif_scalar. 2024-01-16T14:25:46.706Z|00034|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports recirculation 2024-01-16T14:25:46.706Z|00035|ofproto_dpif|INFO|netdev@ovs-netdev: VLAN header stack length probed as 1 2024-01-16T14:25:46.706Z|00036|ofproto_dpif|INFO|netdev@ovs-netdev: MPLS label stack length probed as 3 2024-01-16T14:25:46.706Z|00037|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports truncate action 2024-01-16T14:25:46.706Z|00038|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports unique flow ids 2024-01-16T14:25:46.706Z|00039|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports clone action 2024-01-16T14:25:46.706Z|00040|ofproto_dpif|INFO|netdev@ovs-netdev: Max sample nesting level probed as 10 2024-01-16T14:25:46.706Z|00041|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports eventmask in conntrack action 2024-01-16T14:25:46.706Z|00042|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_clear action 2024-01-16T14:25:46.706Z|00043|ofproto_dpif|INFO|netdev@ovs-netdev: Max dp_hash algorithm probed to be 1 2024-01-16T14:25:46.706Z|00044|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports check_pkt_len action 2024-01-16T14:25:46.706Z|00045|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports timeout policy in conntrack action 2024-01-16T14:25:46.706Z|00046|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_zero_snat 2024-01-16T14:25:46.706Z|00047|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports add_mpls action 2024-01-16T14:25:46.706Z|00048|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_state 2024-01-16T14:25:46.706Z|00049|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_zone 2024-01-16T14:25:46.706Z|00050|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_mark 2024-01-16T14:25:46.706Z|00051|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_label 2024-01-16T14:25:46.706Z|00052|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_state_nat 2024-01-16T14:25:46.706Z|00053|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_orig_tuple 2024-01-16T14:25:46.706Z|00054|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_orig_tuple6 2024-01-16T14:25:46.706Z|00055|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports IPv6 ND Extensions 2024-01-16T14:25:46.706Z|00056|ofproto_dpif_upcall|INFO|Setting n-handler-threads to 23, setting n-revalidator-threads to 9 2024-01-16T14:25:46.706Z|00057|ofproto_dpif_upcall|INFO|Starting 32 threads 2024-01-16T14:25:46.839Z|00058|dpif_netdev|INFO|pmd-rxq-affinity isolates PMD core 2024-01-16T14:25:46.839Z|00059|dpif_netdev|INFO|PMD auto load balance interval set to 1 mins 2024-01-16T14:25:46.839Z|00060|dpif_netdev|INFO|PMD auto load balance improvement threshold set to 25% 2024-01-16T14:25:46.839Z|00061|dpif_netdev|INFO|PMD auto load balance load threshold set to 95% 2024-01-16T14:25:46.839Z|00062|dpif_netdev|INFO|PMD auto load balance is disabled. 2024-01-16T14:25:46.879Z|00063|bridge|INFO|bridge ovsbr0: added interface ovsbr0 on port 65534 2024-01-16T14:25:46.879Z|00064|bridge|INFO|bridge ovsbr0: using datapath ID 0000c2942932d448 2024-01-16T14:25:46.879Z|00065|connmgr|INFO|ovsbr0: added service controller "punix:/var/run/openvswitch/ovsbr0.mgmt" 2024-01-16T14:25:52.135Z|00066|dpif_netdev|INFO|PMD thread on numa_id: 0, core id: 21 created. 2024-01-16T14:25:52.135Z|00067|dpif_netdev|INFO|There are 1 pmd threads on numa node 0 2024-01-16T14:25:52.136Z|00068|dpdk|INFO|VHOST_CONFIG: Linear buffers requested without external buffers, disabling host segmentation offloading support 2024-01-16T14:25:52.137Z|00001|dpdk(pmd-c21/id:37)|INFO|PMD thread uses DPDK lcore 1. 2024-01-16T14:25:52.143Z|00069|dpdk|INFO|VHOST_CONFIG: vhost-user client: socket created, fd: 69 2024-01-16T14:25:52.143Z|00070|netdev_dpdk|INFO|vHost User device 'vhost-user2' created in 'client' mode, using client socket '/tmp/dpdkvhostclient2' 2024-01-16T14:25:52.148Z|00071|dpdk|WARN|VHOST_CONFIG: failed to connect to /tmp/dpdkvhostclient2: No such file or directory 2024-01-16T14:25:52.148Z|00072|dpdk|INFO|VHOST_CONFIG: /tmp/dpdkvhostclient2: reconnecting... 2024-01-16T14:25:52.387Z|00073|dpif_netdev|INFO|Performing pmd to rx queue assignment using cycles algorithm. 2024-01-16T14:25:52.387Z|00074|dpif_netdev|INFO|Core 21 on numa node 0 assigned port 'vhost-user2' rx queue 0 (measured processing cycles 0). 2024-01-16T14:25:52.387Z|00075|bridge|INFO|bridge ovsbr0: added interface vhost-user2 on port 1 2024-01-16T14:25:56.883Z|00076|memory|INFO|peak resident set size grew 509% in last 71003.6 seconds, from 63108 kB to 384396 kB 2024-01-16T14:25:56.884Z|00077|memory|INFO|handlers:23 idl-cells:153 ports:2 revalidators:9 rules:5 2024-01-16T14:26:02.872Z|00078|bridge|INFO|bridge ovsbr0: deleted interface ovsbr0 on port 65534 2024-01-16T14:26:02.872Z|00079|bridge|INFO|bridge ovsbr0: deleted interface vhost-user2 on port 1 2024-01-16T14:26:02.872Z|00080|dpif_netdev|INFO|PMD thread on numa_id: 0, core id: 21 destroyed. 2024-01-16T14:26:02.872Z|00002|dpdk(pmd-c21/id:37)|INFO|PMD thread released DPDK lcore 1. 2024-01-16T14:26:04.350Z|00001|vlog|INFO|opened log file /var/log/openvswitch/ovs-vswitchd.log 2024-01-16T14:26:04.362Z|00002|ovs_numa|INFO|Discovered 32 CPU cores on NUMA node 0 2024-01-16T14:26:04.363Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 32 CPU cores 2024-01-16T14:26:04.363Z|00004|reconnect|INFO|unix:/var/run/openvswitch/db.sock: connecting... 2024-01-16T14:26:04.363Z|00005|reconnect|INFO|unix:/var/run/openvswitch/db.sock: connected 2024-01-16T14:26:04.368Z|00006|dpdk|INFO|Using DPDK 21.11.4 2024-01-16T14:26:04.368Z|00007|dpdk|INFO|DPDK Enabled - initializing... 2024-01-16T14:26:04.368Z|00008|dpdk|INFO|No vhost-sock-dir provided - defaulting to /var/run/openvswitch 2024-01-16T14:26:04.368Z|00009|dpdk|INFO|IOMMU support for vhost-user-client disabled. 2024-01-16T14:26:04.368Z|00010|dpdk|INFO|POSTCOPY support for vhost-user-client disabled. 2024-01-16T14:26:04.368Z|00011|dpdk|INFO|Per port memory for DPDK devices disabled. 2024-01-16T14:26:04.368Z|00012|dpdk|INFO|EAL ARGS: ovs-vswitchd --in-memory -l 0. 2024-01-16T14:26:04.389Z|00013|dpdk|INFO|EAL: Detected CPU lcores: 32 2024-01-16T14:26:04.389Z|00014|dpdk|INFO|EAL: Detected NUMA nodes: 1 2024-01-16T14:26:04.389Z|00015|dpdk|INFO|EAL: Detected shared linkage of DPDK 2024-01-16T14:26:04.425Z|00016|dpdk|INFO|EAL: Selected IOVA mode 'PA' 2024-01-16T14:26:04.426Z|00017|dpdk|WARN|EAL: No available 1048576 kB hugepages reported 2024-01-16T14:26:04.426Z|00018|dpdk|WARN|EAL: No free 1048576 kB hugepages reported on node 0 2024-01-16T14:26:04.426Z|00019|dpdk|WARN|EAL: No available 1048576 kB hugepages reported 2024-01-16T14:26:04.426Z|00020|dpdk|INFO|EAL: VFIO support initialized 2024-01-16T14:26:04.544Z|00021|dpdk|INFO|EAL: Probe PCI driver: net_virtio (1af4:1000) device: 0000:00:03.0 (socket 0) 2024-01-16T14:26:04.544Z|00022|dpdk|ERR|eth_virtio_pci_init(): Failed to init PCI device 2024-01-16T14:26:04.544Z|00023|dpdk|ERR|EAL: Requested device 0000:00:03.0 cannot be used 2024-01-16T14:26:04.553Z|00024|dpdk|WARN|TELEMETRY: No legacy callbacks, legacy socket not created 2024-01-16T14:26:04.561Z|00025|dpdk|INFO|DPDK Enabled - initialized 2024-01-16T14:26:04.567Z|00026|pmd_perf|INFO|DPDK provided TSC frequency: 2000000 KHz 2024-01-16T14:26:04.595Z|00027|dpif_netdev_extract|INFO|Default MFEX Extract implementation is scalar. 2024-01-16T14:26:04.603Z|00028|dpif_netdev_impl|INFO|Default DPIF implementation is dpif_scalar. 2024-01-16T14:26:04.606Z|00029|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports recirculation 2024-01-16T14:26:04.606Z|00030|ofproto_dpif|INFO|netdev@ovs-netdev: VLAN header stack length probed as 1 2024-01-16T14:26:04.606Z|00031|ofproto_dpif|INFO|netdev@ovs-netdev: MPLS label stack length probed as 3 2024-01-16T14:26:04.606Z|00032|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports truncate action 2024-01-16T14:26:04.606Z|00033|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports unique flow ids 2024-01-16T14:26:04.606Z|00034|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports clone action 2024-01-16T14:26:04.606Z|00035|ofproto_dpif|INFO|netdev@ovs-netdev: Max sample nesting level probed as 10 2024-01-16T14:26:04.606Z|00036|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports eventmask in conntrack action 2024-01-16T14:26:04.606Z|00037|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_clear action 2024-01-16T14:26:04.606Z|00038|ofproto_dpif|INFO|netdev@ovs-netdev: Max dp_hash algorithm probed to be 1 2024-01-16T14:26:04.606Z|00039|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports check_pkt_len action 2024-01-16T14:26:04.606Z|00040|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports timeout policy in conntrack action 2024-01-16T14:26:04.606Z|00041|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_zero_snat 2024-01-16T14:26:04.606Z|00042|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports add_mpls action 2024-01-16T14:26:04.606Z|00043|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_state 2024-01-16T14:26:04.606Z|00044|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_zone 2024-01-16T14:26:04.606Z|00045|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_mark 2024-01-16T14:26:04.606Z|00046|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_label 2024-01-16T14:26:04.606Z|00047|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_state_nat 2024-01-16T14:26:04.606Z|00048|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_orig_tuple 2024-01-16T14:26:04.606Z|00049|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports ct_orig_tuple6 2024-01-16T14:26:04.606Z|00050|ofproto_dpif|INFO|netdev@ovs-netdev: Datapath supports IPv6 ND Extensions 2024-01-16T14:26:04.606Z|00051|ofproto_dpif_upcall|INFO|Setting n-handler-threads to 23, setting n-revalidator-threads to 9 2024-01-16T14:26:04.606Z|00052|ofproto_dpif_upcall|INFO|Starting 32 threads 2024-01-16T14:26:04.750Z|00053|dpif_netdev|INFO|pmd-rxq-affinity isolates PMD core 2024-01-16T14:26:04.750Z|00054|dpif_netdev|INFO|PMD auto load balance interval set to 1 mins 2024-01-16T14:26:04.750Z|00055|dpif_netdev|INFO|PMD auto load balance improvement threshold set to 25% 2024-01-16T14:26:04.750Z|00056|dpif_netdev|INFO|PMD auto load balance load threshold set to 95% 2024-01-16T14:26:04.750Z|00057|dpif_netdev|INFO|PMD auto load balance is disabled. 2024-01-16T14:26:04.750Z|00058|bridge|INFO|bridge ovsbr0: added interface ovsbr0 on port 65534 2024-01-16T14:26:04.756Z|00059|dpif_netdev|INFO|PMD thread on numa_id: 0, core id: 21 created. 2024-01-16T14:26:04.756Z|00060|dpif_netdev|INFO|There are 1 pmd threads on numa node 0 2024-01-16T14:26:04.756Z|00061|dpdk|INFO|VHOST_CONFIG: Linear buffers requested without external buffers, disabling host segmentation offloading support 2024-01-16T14:26:04.756Z|00001|dpdk(pmd-c21/id:37)|INFO|PMD thread uses DPDK lcore 1. 2024-01-16T14:26:04.774Z|00062|dpdk|INFO|VHOST_CONFIG: vhost-user client: socket created, fd: 64 2024-01-16T14:26:04.774Z|00063|netdev_dpdk|INFO|vHost User device 'vhost-user2' created in 'client' mode, using client socket '/tmp/dpdkvhostclient2' 2024-01-16T14:26:04.777Z|00064|dpdk|WARN|VHOST_CONFIG: failed to connect to /tmp/dpdkvhostclient2: No such file or directory 2024-01-16T14:26:04.777Z|00065|dpdk|INFO|VHOST_CONFIG: /tmp/dpdkvhostclient2: reconnecting... 2024-01-16T14:26:04.979Z|00066|dpif_netdev|INFO|Performing pmd to rx queue assignment using cycles algorithm. 2024-01-16T14:26:04.980Z|00067|dpif_netdev|INFO|Core 21 on numa node 0 assigned port 'vhost-user2' rx queue 0 (measured processing cycles 0). 2024-01-16T14:26:04.980Z|00068|bridge|INFO|bridge ovsbr0: added interface vhost-user2 on port 1 2024-01-16T14:26:04.980Z|00069|bridge|INFO|bridge ovsbr0: using datapath ID 0000c2942932d448 2024-01-16T14:26:04.980Z|00070|connmgr|INFO|ovsbr0: added service controller "punix:/var/run/openvswitch/ovsbr0.mgmt" 2024-01-16T14:26:04.983Z|00071|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.17.8 2024-01-16T14:26:14.599Z|00072|memory|INFO|384396 kB peak resident set size after 10.2 seconds 2024-01-16T14:26:14.600Z|00073|memory|INFO|handlers:23 idl-cells:153 ports:2 revalidators:9 rules:5 udpif keys:2 2024-01-16T14:26:22.763Z|00001|dpdk|INFO|VHOST_CONFIG: /tmp/dpdkvhostclient2: connected 2024-01-16T14:26:22.763Z|00002|dpdk|INFO|VHOST_CONFIG: new device, handle is 0, path is /tmp/dpdkvhostclient2 2024-01-16T14:26:22.764Z|00001|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_OWNER 2024-01-16T14:26:22.764Z|00002|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_GET_FEATURES 2024-01-16T14:26:22.765Z|00003|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_GET_PROTOCOL_FEATURES 2024-01-16T14:26:22.765Z|00004|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_PROTOCOL_FEATURES 2024-01-16T14:26:22.765Z|00005|dpdk|INFO|VHOST_CONFIG: negotiated Vhost-user protocol features: 0xb 2024-01-16T14:26:22.765Z|00006|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_GET_QUEUE_NUM 2024-01-16T14:26:23.471Z|00007|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_FEATURES 2024-01-16T14:26:23.471Z|00008|dpdk|INFO|VHOST_CONFIG: negotiated Virtio features: 0x16042a782 2024-01-16T14:26:23.471Z|00009|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_MEM_TABLE 2024-01-16T14:26:24.096Z|00010|dpdk|INFO|VHOST_CONFIG: guest memory region size: 0x40000000 guest physical addr: 0x0 guest virtual addr: 0x7f090c000000 host virtual addr: 0x7fbbbc000000 mmap addr : 0x7fbbbc000000 mmap size : 0x40000000 mmap align: 0x1000 mmap off : 0x0 2024-01-16T14:26:24.096Z|00011|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_NUM 2024-01-16T14:26:24.106Z|00012|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_NUM 2024-01-16T14:26:24.116Z|00013|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_ADDR 2024-01-16T14:26:24.116Z|00014|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_BASE 2024-01-16T14:26:24.117Z|00015|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_CALL 2024-01-16T14:26:24.117Z|00016|dpdk|INFO|VHOST_CONFIG: vring call idx:0 file:453 2024-01-16T14:26:24.117Z|00017|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_KICK 2024-01-16T14:26:24.117Z|00018|dpdk|INFO|VHOST_CONFIG: vring kick idx:0 file:454 2024-01-16T14:26:24.117Z|00019|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_ADDR 2024-01-16T14:26:24.117Z|00020|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_BASE 2024-01-16T14:26:24.117Z|00021|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_CALL 2024-01-16T14:26:24.117Z|00022|dpdk|INFO|VHOST_CONFIG: vring call idx:1 file:455 2024-01-16T14:26:24.117Z|00023|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_KICK 2024-01-16T14:26:24.117Z|00024|dpdk|INFO|VHOST_CONFIG: vring kick idx:1 file:456 2024-01-16T14:26:24.117Z|00025|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_ENABLE 2024-01-16T14:26:24.117Z|00026|dpdk|INFO|VHOST_CONFIG: set queue enable: 1 to qp idx: 0 2024-01-16T14:26:24.117Z|00027|netdev_dpdk|INFO|State of queue 0 ( tx_qid 0 ) of vhost device '/tmp/dpdkvhostclient2' changed to 'enabled' 2024-01-16T14:26:24.117Z|00028|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_VRING_ENABLE 2024-01-16T14:26:24.117Z|00029|dpdk|INFO|VHOST_CONFIG: set queue enable: 1 to qp idx: 1 2024-01-16T14:26:24.117Z|00030|netdev_dpdk|INFO|State of queue 1 ( rx_qid 0 ) of vhost device '/tmp/dpdkvhostclient2' changed to 'enabled' 2024-01-16T14:26:24.117Z|00031|dpdk|INFO|VHOST_CONFIG: virtio is now ready for processing. 2024-01-16T14:26:24.117Z|00032|netdev_dpdk|INFO|vHost Device '/tmp/dpdkvhostclient2' has been added on numa node 0 2024-01-16T14:26:24.620Z|00074|memory|INFO|peak resident set size grew 273% in last 10.0 seconds, from 384396 kB to 1432016 kB 2024-01-16T14:26:24.620Z|00075|memory|INFO|handlers:23 idl-cells:153 ports:2 revalidators:9 rules:5 2024-01-16T14:27:17.575Z|00033|dpdk|INFO|VHOST_CONFIG: read message VHOST_USER_SET_LOG_BASE 2024-01-16T14:27:17.575Z|00034|dpdk|INFO|VHOST_CONFIG: log mmap size: 32768, offset: 0 Thanks and Regards, Ravi --------------------------------------------------------------------- Intel Finland Oy Registered Address: PL 281, 00181 Helsinki Business Identity Code: 0357606 - 4 Domiciled in Helsinki This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.
_______________________________________________ discuss mailing list disc...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-discuss