[PATCH 0/6] Move memory listener register to vhost_vdpa_init

Eugenio Pérez posted 6 patches 8 months, 1 week ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240111190222.496695-1-eperezma@redhat.com
Maintainers: "Michael S. Tsirkin" <mst@redhat.com>, Jason Wang <jasowang@redhat.com>
There is a newer version of this series
include/hw/virtio/vhost-vdpa.h |  6 +++
hw/virtio/vhost-vdpa.c         | 87 +++++++++++++++++++++-------------
net/vhost-vdpa.c               |  4 +-
3 files changed, 63 insertions(+), 34 deletions(-)
[PATCH 0/6] Move memory listener register to vhost_vdpa_init
Posted by Eugenio Pérez 8 months, 1 week ago
Current memory operations like pinning may take a lot of time at the
destination.  Currently they are done after the source of the migration is
stopped, and before the workload is resumed at the destination.  This is a
period where neigher traffic can flow, nor the VM workload can continue
(downtime).

We can do better as we know the memory layout of the guest RAM at the
destination from the moment that all devices are initializaed.  So
moving that operation allows QEMU to communicate the kernel the maps
while the workload is still running in the source, so Linux can start
mapping them.

As a small drawback, there is a time in the initialization where QEMU
cannot respond to QMP etc.  By some testing, this time is about
0.2seconds.  This may be further reduced (or increased) depending on the
vdpa driver and the platform hardware, and it is dominated by the cost
of memory pinning.

This matches the time that we move out of the called downtime window.
The downtime is measured as checking the trace timestamp from the moment
the source suspend the device to the moment the destination starts the
eight and last virtqueue pair.  For a 39G guest, it goes from ~2.2526
secs to 2.0949.

Future directions on top of this series may include to move more things ahead
of the migration time, like set DRIVER_OK or perform actual iterative migration
of virtio-net devices.

Comments are welcome.

This series is a different approach of series [1]. As the title does not
reflect the changes anymore, please refer to the previous one to know the
series history.

[1] https://patchwork.kernel.org/project/qemu-devel/cover/20231215172830.2540987-1-eperezma@redhat.com/

Eugenio Pérez (6):
  vdpa: check for iova tree initialized at net_client_start
  vdpa: reorder vhost_vdpa_set_backend_cap
  vdpa: set backend capabilities at vhost_vdpa_init
  vdpa: add listener_registered
  vdpa: reorder listener assignment
  vdpa: move memory listener register to vhost_vdpa_init

 include/hw/virtio/vhost-vdpa.h |  6 +++
 hw/virtio/vhost-vdpa.c         | 87 +++++++++++++++++++++-------------
 net/vhost-vdpa.c               |  4 +-
 3 files changed, 63 insertions(+), 34 deletions(-)

-- 
2.39.3

Re: [PATCH 0/6] Move memory listener register to vhost_vdpa_init
Posted by Lei Yang 8 months ago
QE tested this series patch with regression testing. It will caused
the host kernel crash. Before hit the host kernel crash, qemu will
output error messages [1].When this error message appears and
hotplug/unplug nic is still performed, a kernel crash will be
triggered soon. For the crash info please review the attached file.
[1] qemu output:
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)
vhost vdpa map fail!
vhost-vdpa: DMA mapping failed, unable to continue
failed to write, fd=148, errno=14 (Bad address)

Best Regards
Lei



On Fri, Jan 12, 2024 at 3:02 AM Eugenio Pérez <eperezma@redhat.com> wrote:
>
> Current memory operations like pinning may take a lot of time at the
> destination.  Currently they are done after the source of the migration is
> stopped, and before the workload is resumed at the destination.  This is a
> period where neigher traffic can flow, nor the VM workload can continue
> (downtime).
>
> We can do better as we know the memory layout of the guest RAM at the
> destination from the moment that all devices are initializaed.  So
> moving that operation allows QEMU to communicate the kernel the maps
> while the workload is still running in the source, so Linux can start
> mapping them.
>
> As a small drawback, there is a time in the initialization where QEMU
> cannot respond to QMP etc.  By some testing, this time is about
> 0.2seconds.  This may be further reduced (or increased) depending on the
> vdpa driver and the platform hardware, and it is dominated by the cost
> of memory pinning.
>
> This matches the time that we move out of the called downtime window.
> The downtime is measured as checking the trace timestamp from the moment
> the source suspend the device to the moment the destination starts the
> eight and last virtqueue pair.  For a 39G guest, it goes from ~2.2526
> secs to 2.0949.
>
> Future directions on top of this series may include to move more things ahead
> of the migration time, like set DRIVER_OK or perform actual iterative migration
> of virtio-net devices.
>
> Comments are welcome.
>
> This series is a different approach of series [1]. As the title does not
> reflect the changes anymore, please refer to the previous one to know the
> series history.
>
> [1] https://patchwork.kernel.org/project/qemu-devel/cover/20231215172830.2540987-1-eperezma@redhat.com/
>
> Eugenio Pérez (6):
>   vdpa: check for iova tree initialized at net_client_start
>   vdpa: reorder vhost_vdpa_set_backend_cap
>   vdpa: set backend capabilities at vhost_vdpa_init
>   vdpa: add listener_registered
>   vdpa: reorder listener assignment
>   vdpa: move memory listener register to vhost_vdpa_init
>
>  include/hw/virtio/vhost-vdpa.h |  6 +++
>  hw/virtio/vhost-vdpa.c         | 87 +++++++++++++++++++++-------------
>  net/vhost-vdpa.c               |  4 +-
>  3 files changed, 63 insertions(+), 34 deletions(-)
>
> --
> 2.39.3
>
>
[ 3701.564749] vringh:
[ 3701.564753] Guest says index 16 > 16 is available
[ 3711.564876] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3711.791911] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3712.009544] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3712.230996] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3712.240739] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3723.810744] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23604): suspending device
[ 3723.839584] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 3723.939836] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 3723.948595] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23604): performing device reset
[ 3724.069840] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 3724.804391] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3748.164526] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3748.173904] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3748.221822] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 3748.230549] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 3748.239338] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 3748.248049] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 3748.271536] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 3758.618435] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3758.652266] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3758.750444] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3758.759171] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3758.880318] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3768.822238] vringh:
[ 3768.822242] Guest says index 16 > 16 is available
[ 3778.822357] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3778.931040] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3778.939790] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3779.066197] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3779.075686] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3790.649869] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 3790.683016] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 3790.784153] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 3790.792875] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 3790.914808] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 3791.641060] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3815.005333] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3815.014756] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3815.060118] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3815.068843] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3815.077625] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3815.086337] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3815.116236] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3825.464069] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3825.494335] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3825.592741] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3825.601472] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3825.722936] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3835.671642] vringh:
[ 3835.671646] Guest says index 16 > 16 is available
[ 3845.671790] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3845.778214] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3845.786962] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3845.913439] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3845.922936] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3857.492105] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23618): suspending device
[ 3857.522918] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 3857.623874] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 3857.632609] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23618): performing device reset
[ 3857.754956] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 3858.486340] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3881.847804] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3881.857214] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3881.902830] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3881.911558] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3881.920332] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3881.929060] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3881.958816] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3892.305709] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3892.337665] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3892.436863] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3892.445584] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3892.566535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3902.513637] vringh:
[ 3902.513641] Guest says index 16 > 16 is available
[ 3912.513777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3912.623489] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3912.632244] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3912.760228] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3912.769716] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3924.341277] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 3924.373713] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3924.473148] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3924.481874] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 3924.603724] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3925.331690] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3948.693380] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3948.702785] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3948.750739] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 3948.759463] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 3948.768259] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 3948.776986] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 3948.800645] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 3959.052558] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3959.081143] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3959.181192] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3959.189914] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3959.311215] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3969.254806] vringh:
[ 3969.254810] Guest says index 16 > 16 is available
[ 3979.254940] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3979.365827] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3979.374579] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 3979.507052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 3979.516875] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 3991.085446] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 3991.121258] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3991.220615] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3991.229349] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 3991.350295] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 3992.082607] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4015.446400] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4015.455780] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4015.507241] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4015.515961] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4015.524776] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4015.533499] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4015.562586] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4025.806331] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4025.839341] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4025.939425] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4025.948157] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4026.069297] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4036.057686] vringh:
[ 4036.057690] Guest says index 16 > 16 is available
[ 4046.057839] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4046.166517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4046.175278] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4046.303194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4046.312740] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4057.886735] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23597): suspending device
[ 4057.916862] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4058.017159] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4058.025880] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23597): performing device reset
[ 4058.147436] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4058.876269] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4082.239026] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4082.248383] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4082.297321] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4082.306053] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4082.314850] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4082.323570] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4082.353202] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4092.696291] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4092.727867] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4092.826899] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4092.835628] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4092.956868] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4102.839363] vringh:
[ 4102.839368] Guest says index 16 > 16 is available
[ 4112.839512] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4112.948130] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4112.956878] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4113.087858] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4113.097563] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4124.665970] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23597): suspending device
[ 4124.696065] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4124.796550] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4124.805284] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23597): performing device reset
[ 4124.926808] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4125.661786] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4149.046774] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4149.056069] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4149.101655] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4149.110376] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4149.119256] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4149.127981] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4149.152048] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4159.506699] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4159.535987] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4159.635470] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4159.644210] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4159.766765] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4169.729414] vringh:
[ 4169.729418] Guest says index 16 > 16 is available
[ 4179.729610] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4179.837366] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4179.846159] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4179.973875] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4179.983648] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4191.565212] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23604): suspending device
[ 4191.594542] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 4191.695302] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 4191.704027] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23604): performing device reset
[ 4191.825381] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 4192.557232] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4215.911181] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4215.920638] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4215.965443] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 4215.974171] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 4215.982931] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 4215.991645] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 4216.023382] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 4226.368610] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4226.396284] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4226.495526] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4226.504251] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4226.625235] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4236.571736] vringh:
[ 4236.571741] Guest says index 16 > 16 is available
[ 4246.571911] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4246.682240] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4246.691002] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4246.818367] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4246.828146] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4258.395606] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23597): suspending device
[ 4258.424408] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4258.526662] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4258.535391] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23597): performing device reset
[ 4258.658457] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 4259.389511] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4282.750204] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4282.759618] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4282.803413] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 4282.812138] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 4282.820927] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 4282.829639] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 4282.853041] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 4293.205689] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4293.236562] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4293.336578] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4293.345302] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4293.466354] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4303.413081] vringh:
[ 4303.413085] Guest says index 16 > 16 is available
[ 4313.413216] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4313.521143] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4313.529892] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4313.656305] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4313.665819] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4325.233791] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23616): suspending device
[ 4325.264754] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4325.363448] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4325.372173] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23616): performing device reset
[ 4325.494440] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4326.228826] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4349.589159] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4349.598569] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4349.648461] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4349.657185] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4349.665976] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4349.674696] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4349.703358] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4359.950408] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4359.980171] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4360.080346] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4360.089077] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4360.210721] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4370.156052] vringh:
[ 4370.156057] Guest says index 16 > 16 is available
[ 4380.156197] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4380.264586] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4380.273345] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4380.400297] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4380.409786] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4391.985994] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23612): suspending device
[ 4392.017874] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4392.118545] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4392.127302] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23612): performing device reset
[ 4392.248973] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 4392.976359] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4416.338126] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4416.347498] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4416.393605] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4416.402329] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4416.411114] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4416.419833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4416.443553] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4426.708204] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4426.738393] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4426.837225] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4426.845955] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4426.967535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4436.914105] vringh:
[ 4436.914110] Guest says index 16 > 16 is available
[ 4446.914244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4447.022075] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4447.030820] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4447.157959] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4447.168767] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4458.745123] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23619): suspending device
[ 4458.776024] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4458.873351] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4458.882081] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23619): performing device reset
[ 4459.003223] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4459.730416] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4483.092854] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4483.102245] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4483.146563] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4483.155284] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4483.164067] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4483.172794] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4483.196438] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4493.482320] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4493.512583] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4493.610431] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4493.619150] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4493.740137] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4503.595872] vringh:
[ 4503.595876] Guest says index 16 > 16 is available
[ 4513.596017] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4513.704790] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4513.713535] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4513.844603] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4513.854525] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4525.422246] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23609): suspending device
[ 4525.454274] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4525.556335] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4525.565070] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23609): performing device reset
[ 4525.686849] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4526.415386] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4549.775471] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4549.784869] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4549.828802] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4549.837527] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4549.846300] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4549.855013] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4549.878548] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4560.230850] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4560.258485] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4560.356297] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4560.365049] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4560.486146] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4570.430533] vringh:
[ 4570.430537] Guest says index 16 > 16 is available
[ 4580.430691] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4580.539866] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4580.548621] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4580.676150] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4580.685889] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4592.248384] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23616): suspending device
[ 4592.284819] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4592.385241] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4592.393976] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23616): performing device reset
[ 4592.514963] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 4593.243541] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4616.608647] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4616.618037] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4616.664977] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 4616.673701] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 4616.682478] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 4616.691194] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 4616.714780] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 4626.962244] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4626.996074] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4627.094594] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4627.103328] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4627.224209] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4637.171636] vringh:
[ 4637.171640] Guest says index 16 > 16 is available
[ 4647.171781] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4647.282050] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4647.290802] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4647.417745] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4647.427640] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4659.000616] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23598): suspending device
[ 4659.033182] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 4659.135118] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 4659.143848] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23598): performing device reset
[ 4659.265991] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 4659.991419] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4683.350801] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4683.360177] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4683.403623] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4683.412347] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4683.421123] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4683.429858] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4683.453862] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4693.714225] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4693.747065] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4693.845423] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4693.854142] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4693.975457] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4703.923621] vringh:
[ 4703.923625] Guest says index 16 > 16 is available
[ 4713.923773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4714.034025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4714.042775] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4714.170760] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4714.180243] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4725.744824] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23610): suspending device
[ 4725.775358] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 4725.876652] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 4725.885376] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23610): performing device reset
[ 4726.006883] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 4726.744704] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4750.105255] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4750.114645] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4750.159273] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4750.168002] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4750.176781] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4750.185494] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4750.209208] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4760.464207] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4760.491671] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4760.591713] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4760.600475] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4760.721678] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4770.685838] vringh:
[ 4770.685841] Guest says index 16 > 16 is available
[ 4780.685982] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4780.801168] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4780.809913] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4780.936418] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4780.945896] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4792.513963] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 4792.543126] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4792.643220] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4792.651950] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 4792.773004] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4793.512850] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4816.873385] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4816.882761] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4816.933522] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4816.942255] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4816.951069] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4816.959790] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4816.987871] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 4827.327487] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4827.357532] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4827.455718] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4827.464434] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4827.586612] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4837.536590] vringh:
[ 4837.536594] Guest says index 16 > 16 is available
[ 4847.536733] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4847.648652] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4847.657400] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4847.783624] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4847.793134] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4859.367244] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 4859.401509] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4859.502471] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4859.511203] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 4859.632465] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4860.359359] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4883.719954] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4883.729407] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4883.772823] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4883.781545] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4883.790322] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4883.799040] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4883.822602] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 4894.175582] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4894.206623] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4894.305028] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4894.313759] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4894.435264] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4904.382513] vringh:
[ 4904.382517] Guest says index 16 > 16 is available
[ 4914.382681] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4914.493337] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4914.502090] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4914.629033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4914.638593] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4926.199410] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 4926.235433] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4926.335818] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4926.344570] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 4926.465910] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4927.197657] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4950.558438] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4950.567825] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4950.611360] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4950.620088] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4950.628861] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4950.637572] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4950.660943] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4960.914459] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4960.948591] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4961.046641] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4961.055364] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4961.176442] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4971.123682] vringh:
[ 4971.123685] Guest says index 16 > 16 is available
[ 4981.123836] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4981.232688] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4981.241440] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 4981.373385] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 4981.382887] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 4992.959627] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 4992.990643] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4993.090314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4993.099031] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 4993.219861] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 4993.947009] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5017.307669] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5017.317095] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5017.360823] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5017.369552] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5017.378346] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5017.387067] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5017.410651] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5028.264029] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5028.292082] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5028.389992] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5028.398740] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5028.519967] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5038.464751] vringh:
[ 5038.464755] Guest says index 16 > 16 is available
[ 5048.464874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5048.575429] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5048.584179] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5048.710609] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5048.720209] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5060.276784] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 5060.307387] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 5060.406580] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 5060.415308] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 5060.536225] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 5061.276630] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5084.636507] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5084.645884] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5084.689667] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5084.698392] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5084.707166] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5084.715885] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5084.739530] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 5094.993893] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5095.028240] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5095.128364] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5095.137085] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5095.258699] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5105.204356] vringh:
[ 5105.204360] Guest says index 16 > 16 is available
[ 5115.204516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5115.316813] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5115.325796] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5115.452185] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5115.461781] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5127.029992] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 5127.061410] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5127.160004] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5127.168735] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 5127.291733] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5128.024340] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5151.384084] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5151.393476] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5151.446439] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5151.455166] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5151.463960] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5151.472686] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5151.500783] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5162.339392] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5162.367013] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5162.464261] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5162.472993] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5162.594717] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5172.542830] vringh:
[ 5172.542834] Guest says index 16 > 16 is available
[ 5182.542964] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5182.651415] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5182.660160] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5182.786550] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5182.796071] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5194.364280] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 5194.399173] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5194.498199] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5194.506923] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 5194.629187] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5195.358825] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5218.718885] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5218.728318] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5218.778792] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5218.787509] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5218.796288] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5218.805006] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5218.828649] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5229.075313] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5229.103236] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5229.202959] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5229.211688] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5229.333034] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5239.281611] vringh:
[ 5239.281615] Guest says index 16 > 16 is available
[ 5249.281758] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5249.392001] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5249.400750] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5249.527701] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5249.537236] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5261.104537] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23597): suspending device
[ 5261.137718] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 5261.237861] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 5261.246592] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23597): performing device reset
[ 5261.368021] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 5262.100564] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5285.461645] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5285.471051] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5285.516282] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5285.525003] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5285.533774] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5285.542489] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5285.566047] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5295.832418] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5295.860604] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5295.958574] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5295.967302] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5296.088740] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5306.034613] vringh:
[ 5306.034617] Guest says index 16 > 16 is available
[ 5316.034763] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5316.145399] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5316.154157] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5316.281429] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5316.290961] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5327.861707] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23597): suspending device
[ 5327.892762] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 5327.994389] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 5328.003129] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23597): performing device reset
[ 5328.124851] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 5328.856705] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5352.216249] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5352.225632] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5352.268810] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5352.277535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5352.286314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5352.295025] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5352.318832] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 5362.581203] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5362.613576] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5362.712435] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5362.721172] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5362.842582] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5372.798133] vringh:
[ 5372.798136] Guest says index 16 > 16 is available
[ 5382.798282] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5382.909890] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5382.918642] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5383.046099] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5383.055650] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5394.624856] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23619): suspending device
[ 5394.654402] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5394.756409] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5394.765133] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23619): performing device reset
[ 5394.886116] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5395.619187] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5418.975596] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5418.985019] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5419.029396] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 5419.038119] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 5419.046900] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 5419.055615] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 5419.079244] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 5429.331916] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5429.361555] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5429.461866] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5429.470587] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5429.592636] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5439.545960] vringh:
[ 5439.545963] Guest says index 16 > 16 is available
[ 5449.546116] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5449.656769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5449.665520] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5449.793476] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5449.802961] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5461.377097] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23610): suspending device
[ 5461.407807] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5461.508141] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5461.516878] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23610): performing device reset
[ 5461.638343] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5462.365063] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5485.727288] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5485.736683] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5485.781356] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5485.790097] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5485.798911] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5485.807639] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5485.831396] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5496.084904] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5496.113007] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5496.213488] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5496.222216] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5496.344219] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5506.309085] vringh:
[ 5506.309087] Guest says index 16 > 16 is available
[ 5516.309234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5516.420667] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5516.429418] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5516.556072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5516.565568] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5528.143201] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23614): suspending device
[ 5528.174808] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5528.280133] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5528.288862] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23614): performing device reset
[ 5528.410709] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5529.131738] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5552.491937] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5552.501426] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5552.550673] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5552.559421] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5552.568224] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5552.576944] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5552.606801] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 5562.946276] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5562.981054] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5563.082203] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5563.090929] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5563.212711] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5573.167284] vringh:
[ 5573.167286] Guest says index 16 > 16 is available
[ 5583.167444] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5583.275996] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5583.284746] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5583.413189] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5583.422673] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5594.996417] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 5595.030480] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5595.134132] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5595.142874] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 5595.264653] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5595.988930] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5619.350336] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5619.359761] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5619.408901] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 5619.417606] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 5619.426383] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 5619.435127] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 5619.458563] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 5629.804666] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5629.832275] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5629.934650] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5629.943378] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5630.065969] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5639.925883] vringh:
[ 5639.925885] Guest says index 16 > 16 is available
[ 5649.926018] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5650.036844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5650.045615] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5650.172467] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5650.182057] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5661.750639] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 5661.785848] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5661.889016] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5661.897744] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 5662.019410] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 5662.744925] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5686.106644] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5686.115972] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5686.160858] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5686.169586] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5686.178360] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5686.187073] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5686.210492] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5696.471386] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5696.500065] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5696.600597] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5696.609327] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5696.731714] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5706.680831] vringh:
[ 5706.680835] Guest says index 16 > 16 is available
[ 5716.680979] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5716.791696] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5716.800447] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5716.927879] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5716.937407] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5728.505739] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23610): suspending device
[ 5728.538291] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5728.641619] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5728.650344] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23610): performing device reset
[ 5728.771820] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5729.497818] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5752.856607] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5752.866062] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5752.915947] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5752.924671] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5752.933480] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5752.942201] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5752.970943] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5763.236634] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5763.264906] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5763.366945] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5763.375674] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5763.497811] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5773.445557] vringh:
[ 5773.445560] Guest says index 16 > 16 is available
[ 5783.445723] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5783.555349] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5783.564102] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5783.690663] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5783.700174] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5795.266946] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23619): suspending device
[ 5795.297402] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5795.400917] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5795.409641] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23619): performing device reset
[ 5795.532130] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 5796.266042] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5819.626599] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5819.636025] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5819.686983] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5819.695709] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5819.704529] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5819.713252] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5819.736823] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5830.081387] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5830.112263] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5830.215315] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5830.224035] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5830.345914] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5840.298823] vringh:
[ 5840.298825] Guest says index 16 > 16 is available
[ 5850.298981] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5850.410279] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5850.419048] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5850.547758] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5850.557266] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5862.133077] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23610): suspending device
[ 5862.166817] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5862.269176] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5862.277894] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23610): performing device reset
[ 5862.400203] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 5863.123663] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5886.484181] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5886.493616] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5886.540131] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5886.548867] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5886.557687] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5886.566402] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5886.593217] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 5896.938181] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5896.967807] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5897.069715] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5897.078438] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5897.199847] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5907.066423] vringh:
[ 5907.066426] Guest says index 16 > 16 is available
[ 5917.066575] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5917.178020] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5917.186774] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5917.315729] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5917.325231] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5928.895219] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23609): suspending device
[ 5928.922721] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5929.024932] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5929.033649] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23609): performing device reset
[ 5929.156003] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5929.887462] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5953.247399] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5953.256795] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5953.308314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5953.317042] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5953.325818] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5953.334536] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5953.358065] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 5963.608284] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5963.640462] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5963.741753] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5963.750483] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5963.871998] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5973.824866] vringh:
[ 5973.824869] Guest says index 16 > 16 is available
[ 5983.825015] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5983.935934] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5983.944690] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 5984.071650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 5984.081228] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 5995.650399] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23611): suspending device
[ 5995.681690] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5995.784461] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5995.793185] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23611): performing device reset
[ 5995.916183] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 5996.642947] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6020.003694] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6020.013081] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6020.057943] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6020.066667] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6020.075442] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6020.084183] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6020.107821] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6030.359471] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6030.394639] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6030.497107] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6030.505837] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6030.627286] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6040.579307] vringh:
[ 6040.579310] Guest says index 16 > 16 is available
[ 6050.579482] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6050.690698] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6050.699466] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6050.832281] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6050.841951] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6062.407633] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23615): suspending device
[ 6062.439287] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6062.543692] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6062.552415] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23615): performing device reset
[ 6062.674206] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6063.403667] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6086.759631] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6086.769040] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6086.814671] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 6086.823391] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 6086.832180] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 6086.840897] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 6086.864558] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 6097.216742] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6097.245192] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6097.347000] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6097.355747] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6097.477067] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6107.428602] vringh:
[ 6107.428606] Guest says index 16 > 16 is available
[ 6117.428736] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6117.540842] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6117.549582] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6117.676858] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6117.686353] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6129.262863] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23607): suspending device
[ 6129.295047] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6129.398184] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6129.406913] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23607): performing device reset
[ 6129.528710] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6130.258907] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6153.619628] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6153.629044] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6153.682404] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6153.691130] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6153.699923] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6153.708641] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6153.737027] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6164.073323] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6164.101797] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6164.204505] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6164.213233] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6164.335035] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6174.203366] vringh:
[ 6174.203368] Guest says index 16 > 16 is available
[ 6184.203531] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6184.314765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6184.323519] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6184.450357] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6184.459873] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6196.029002] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 6196.064478] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6196.168317] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6196.177049] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 6196.299807] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6197.023477] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6220.384551] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6220.393960] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6220.440533] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 6220.449257] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 6220.458042] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 6220.466758] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 6220.490383] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 6230.747877] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6230.776500] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6230.878368] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6230.887091] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6231.008929] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6240.961883] vringh:
[ 6240.961885] Guest says index 16 > 16 is available
[ 6250.962025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6251.073145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6251.081896] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6251.209325] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6251.218778] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6262.790213] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23611): suspending device
[ 6262.822292] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6262.925821] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6262.934560] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23611): performing device reset
[ 6263.056228] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6263.784284] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6287.138269] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6287.147697] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6287.191701] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 6287.200424] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 6287.209224] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 6287.217966] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 6287.241457] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 6297.497377] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6297.527130] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6297.630354] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6297.639083] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6297.760613] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6307.718253] vringh:
[ 6307.718255] Guest says index 16 > 16 is available
[ 6317.718427] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6317.829798] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6317.838560] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6317.965570] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6317.975059] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6329.541434] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23615): suspending device
[ 6329.574898] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6329.678070] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6329.686797] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23615): performing device reset
[ 6329.808872] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6330.538171] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6353.898076] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6353.907501] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6353.952134] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6353.960860] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6353.969646] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6353.978371] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6354.001941] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6364.353807] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6364.383169] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6364.483026] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6364.491751] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6364.613358] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6374.572655] vringh:
[ 6374.572658] Guest says index 16 > 16 is available
[ 6384.572817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6384.684515] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6384.693274] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6384.821995] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6384.831494] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6396.397584] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23611): suspending device
[ 6396.428222] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6396.531451] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6396.540167] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23611): performing device reset
[ 6396.661946] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6397.393687] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6420.753119] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6420.762545] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6420.806138] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6420.814857] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6420.823628] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6420.832343] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6420.855947] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 6431.207779] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6431.240456] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6431.342218] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6431.350953] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6431.472480] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6441.424053] vringh:
[ 6441.424056] Guest says index 16 > 16 is available
[ 6451.424217] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6451.535887] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6451.544647] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6451.671220] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6451.680796] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6463.253870] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23618): suspending device
[ 6463.286933] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 6463.390282] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 6463.399020] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23618): performing device reset
[ 6463.521329] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 6464.245169] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6487.613435] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6487.622871] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6487.667566] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6487.676288] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6487.685106] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6487.693835] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6487.727638] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 6498.069349] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6498.097318] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6498.199373] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6498.208102] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6498.330438] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6508.282714] vringh:
[ 6508.282716] Guest says index 16 > 16 is available
[ 6518.282879] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6518.395157] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6518.403927] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6518.530662] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6518.540222] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6530.113093] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 6530.150306] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6530.254744] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6530.263466] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 6530.385976] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6531.107861] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6554.468260] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6554.477690] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6554.522694] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6554.531421] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6554.540235] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6554.548955] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6554.572597] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 6564.826893] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6564.855636] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6564.958461] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6564.967197] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6565.088918] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6575.043328] vringh:
[ 6575.043331] Guest says index 16 > 16 is available
[ 6585.043479] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6585.155252] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6585.164016] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6585.290780] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6585.300303] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6596.880324] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 6596.908052] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6597.009900] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6597.018631] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 6597.140923] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6597.875571] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6621.236535] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6621.245961] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6621.294774] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6621.303502] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6621.312300] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6621.321025] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6621.401210] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6631.690661] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6631.723296] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6631.826724] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6631.835458] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6631.957802] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6641.913503] vringh:
[ 6641.913507] Guest says index 16 > 16 is available
[ 6651.913654] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6652.024137] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6652.032896] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6652.159388] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6652.168899] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6663.738548] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23604): suspending device
[ 6663.770751] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6663.873413] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6663.882142] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23604): performing device reset
[ 6664.004363] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 6664.731889] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6688.091631] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6688.101103] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6688.146419] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6688.155157] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6688.163936] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6688.172657] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6688.202313] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6698.461655] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6698.487987] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6698.590074] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6698.598798] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6698.720096] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6708.674348] vringh:
[ 6708.674352] Guest says index 16 > 16 is available
[ 6718.674481] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6718.785283] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6718.794020] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6718.920423] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6718.929854] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6730.501807] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 6730.532754] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6730.634717] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6730.643450] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 6730.766395] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6731.497552] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6754.859160] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6754.868580] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6754.917442] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 6754.926167] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 6754.934951] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 6754.943676] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 6754.969440] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 6765.213389] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6765.243804] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6765.344983] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6765.353708] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6765.475650] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6775.429189] vringh:
[ 6775.429193] Guest says index 16 > 16 is available
[ 6785.429329] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6785.542733] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6785.551473] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6785.678065] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6785.687538] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6797.259975] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23614): suspending device
[ 6797.292592] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 6797.397088] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 6797.405810] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23614): performing device reset
[ 6797.528078] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 6798.254878] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6821.620781] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6821.630215] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6821.675200] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 6821.683928] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 6821.692729] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 6821.701453] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 6821.725209] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 6832.077973] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6832.108435] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6832.210071] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6832.218815] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6832.340815] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6842.290069] vringh:
[ 6842.290073] Guest says index 16 > 16 is available
[ 6852.290231] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6852.400178] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6852.408934] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6852.536450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6852.545921] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6864.123122] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23602): suspending device
[ 6864.155059] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6864.258773] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6864.267520] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23602): performing device reset
[ 6864.390086] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6865.119781] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6888.487469] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6888.496890] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6888.542493] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6888.551222] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6888.559998] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6888.568721] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6888.598664] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 6898.861468] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6898.889689] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6898.991769] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6899.000514] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6899.122874] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6908.992028] vringh:
[ 6908.992031] Guest says index 16 > 16 is available
[ 6918.992191] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6919.102722] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6919.111485] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6919.238856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6919.248340] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6930.824341] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 6930.854616] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6930.956833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6930.965552] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 6931.087217] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6931.818201] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6955.178702] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6955.188455] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6955.232528] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6955.241259] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6955.250036] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6955.258745] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6955.282334] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 6966.050914] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6966.078540] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6966.180152] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6966.188895] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6966.310241] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6976.265133] vringh:
[ 6976.265136] Guest says index 16 > 16 is available
[ 6986.265303] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6986.377932] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6986.386688] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 6986.513355] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 6986.522849] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 6994.971732] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 6995.300596] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 6998.091601] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23615): suspending device
[ 6998.124109] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6998.229062] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6998.237784] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23615): performing device reset
[ 6998.359930] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 6999.084867] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7022.451684] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7022.461055] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7022.509810] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7022.518534] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7022.527314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7022.536032] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7022.559730] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7032.906176] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7032.936144] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7033.037528] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7033.046261] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7033.168080] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7040.958599] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 7041.278773] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 7043.116365] vringh:
[ 7043.116369] Guest says index 16 > 16 is available
[ 7053.116522] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7053.229622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7053.238388] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7053.365323] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7053.374834] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7064.957701] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23616): suspending device
[ 7064.994557] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7065.100416] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7065.109140] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23616): performing device reset
[ 7065.230693] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7065.949248] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7089.348894] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7089.358631] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7089.410520] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7089.419247] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7089.428041] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7089.436757] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7089.460506] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7100.304286] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7100.333340] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7100.435773] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7100.444531] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7100.566085] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7110.524166] vringh:
[ 7110.524169] Guest says index 16 > 16 is available
[ 7120.524337] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7120.635252] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7120.644012] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7120.770977] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7120.780490] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7132.347812] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23598): suspending device
[ 7132.379299] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 7132.483448] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 7132.492175] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23598): performing device reset
[ 7132.614007] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 7133.348630] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7156.707399] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7156.716838] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7156.765773] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7156.774511] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7156.783318] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7156.792036] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7156.820628] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7167.662656] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7167.690857] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7167.792192] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7167.800960] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7167.923082] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7177.876029] vringh:
[ 7177.876032] Guest says index 16 > 16 is available
[ 7187.876187] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7187.988692] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7187.997455] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7188.124411] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7188.133964] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7199.704982] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23599): suspending device
[ 7199.737435] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 7199.839616] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 7199.848341] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23599): performing device reset
[ 7199.971337] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23599): memory map update
[ 7200.698862] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7224.061521] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7224.070908] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7224.119107] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7224.127840] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7224.136684] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7224.145409] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7224.169271] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7234.518961] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7234.546861] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7234.647687] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7234.656439] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7234.778884] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7244.732280] vringh:
[ 7244.732284] Guest says index 16 > 16 is available
[ 7254.732425] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7254.842158] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7254.850922] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7254.977412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7254.986907] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7266.560217] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23603): suspending device
[ 7266.592699] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7266.694467] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7266.703197] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23603): performing device reset
[ 7266.826199] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7267.549228] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7290.917364] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7290.926775] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7290.973792] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7290.982514] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7290.991296] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7291.000012] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7291.023837] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 7301.281170] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7301.310202] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7301.411692] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7301.420425] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7301.542675] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7311.495384] vringh:
[ 7311.495387] Guest says index 16 > 16 is available
[ 7321.495557] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7321.608435] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7321.617191] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7321.747090] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7321.756635] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7333.329521] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23607): suspending device
[ 7333.359812] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7333.462328] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7333.471052] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23607): performing device reset
[ 7333.593912] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7334.323534] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7357.683450] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7357.692842] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7357.737728] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7357.746452] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7357.755227] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7357.763944] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7357.787746] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7368.139330] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7368.168404] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7368.270219] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7368.278949] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7368.400973] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7378.349251] vringh:
[ 7378.349256] Guest says index 16 > 16 is available
[ 7388.349402] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7388.460732] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7388.469482] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7388.596648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7388.606125] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7400.177614] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23607): suspending device
[ 7400.213242] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7400.315397] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7400.324120] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23607): performing device reset
[ 7400.445866] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7401.170009] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7424.532501] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7424.542029] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7424.588842] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7424.597565] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7424.606380] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7424.615101] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7424.643242] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7434.118074] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 7434.443249] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 7434.988069] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7435.017234] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7435.119909] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7435.128622] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7435.250318] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7445.198230] vringh:
[ 7445.198234] Guest says index 16 > 16 is available
[ 7455.198395] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7455.308207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7455.316976] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7455.443856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7455.453397] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7467.020969] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23612): suspending device
[ 7467.050277] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 7467.152869] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 7467.161598] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23612): performing device reset
[ 7467.283301] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 7468.021407] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7491.385581] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7491.395339] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7491.444708] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7491.453451] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7491.462240] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7491.470958] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7491.494512] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7501.841196] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7501.869621] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7501.970480] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7501.979233] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7502.101278] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7512.056108] vringh:
[ 7512.056112] Guest says index 16 > 16 is available
[ 7522.056255] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7522.166346] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7522.175100] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7522.301710] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7522.311181] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7523.964442] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 7524.289964] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 7533.885345] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23611): suspending device
[ 7533.915472] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7534.017923] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7534.026672] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23611): performing device reset
[ 7534.148538] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7534.874874] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7558.235963] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7558.245319] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7558.290052] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7558.298778] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7558.307580] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7558.316300] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7558.340029] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7568.692904] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7568.720725] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7568.820582] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7568.829310] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7568.950759] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7569.964145] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7570.275230] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7578.900726] vringh:
[ 7578.900730] Guest says index 16 > 16 is available
[ 7588.900919] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7589.012358] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7589.021125] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7589.151311] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7589.160610] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7600.723527] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23615): suspending device
[ 7600.755458] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7600.856570] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7600.865295] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23615): performing device reset
[ 7600.987593] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 7601.722862] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7625.082326] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7625.091706] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7625.137258] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7625.145989] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7625.154756] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7625.163480] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7625.187162] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7635.536573] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7635.564289] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7635.666033] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7635.674759] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7635.796923] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7645.746768] vringh:
[ 7645.746772] Guest says index 16 > 16 is available
[ 7655.746931] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7655.857936] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7655.866701] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7655.995111] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7656.004642] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7667.577732] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23614): suspending device
[ 7667.605833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7667.709891] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7667.718635] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23614): performing device reset
[ 7667.840176] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7668.567572] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7691.926411] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7691.935769] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7691.983178] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7691.991909] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7692.000692] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7692.009405] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7692.033412] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 7702.382226] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7702.409215] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7702.510839] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7702.519563] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7702.641755] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7712.592068] vringh:
[ 7712.592072] Guest says index 16 > 16 is available
[ 7722.592232] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7722.702576] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7722.711333] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7722.838135] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7722.847652] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7734.410952] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23614): suspending device
[ 7734.447955] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7734.549663] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7734.558391] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23614): performing device reset
[ 7734.681143] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7735.404333] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7758.763115] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7758.772483] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7758.817425] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7758.826150] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7758.834949] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7758.843672] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7758.867477] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23611): memory map update
[ 7769.121238] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7769.149894] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7769.252144] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7769.260876] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7769.382571] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7779.338609] vringh:
[ 7779.338613] Guest says index 16 > 16 is available
[ 7789.338785] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7789.450065] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7789.458844] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7789.587596] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7789.597378] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7801.168047] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 7801.199252] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 7801.302138] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 7801.310862] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 7801.432512] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 7802.159483] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7825.519885] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7825.529545] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7825.573983] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7825.582714] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7825.591525] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7825.600248] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7825.627321] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7835.875748] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7835.903833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7836.006174] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7836.014933] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7836.137044] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7846.090401] vringh:
[ 7846.090405] Guest says index 16 > 16 is available
[ 7856.090559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7856.199560] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7856.208333] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7856.336459] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7856.345943] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7867.914350] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23596): suspending device
[ 7867.949075] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7868.050746] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7868.059475] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23596): performing device reset
[ 7868.182841] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 7868.911696] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7892.273390] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7892.282770] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7892.330310] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7892.339032] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7892.347888] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7892.356613] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7892.380314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 7902.731421] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7902.762524] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7902.863551] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7902.872307] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7902.994479] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7912.944187] vringh:
[ 7912.944191] Guest says index 16 > 16 is available
[ 7922.944363] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7923.055515] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7923.064289] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7923.192693] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7923.202344] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7923.244431] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7923.573649] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 7935.263532] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23604): suspending device
[ 7935.299051] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 7935.403039] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 7935.411768] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23604): performing device reset
[ 7935.534722] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 7936.264339] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7959.624497] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7959.633885] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7959.677057] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 7959.685782] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 7959.694554] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 7959.703269] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 7959.726855] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 7969.074252] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 7969.390265] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 7970.081953] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 7970.112473] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7970.214573] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7970.223330] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7970.344797] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7980.290600] vringh:
[ 7980.290604] Guest says index 16 > 16 is available
[ 7990.290782] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7990.399850] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7990.408623] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 7990.536695] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 7990.546247] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8002.111654] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 8002.139930] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8002.244265] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8002.252991] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 8002.375119] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8003.111636] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8026.470941] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8026.480653] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8026.530775] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8026.539515] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8026.548356] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8026.557080] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8026.580844] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8036.840525] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8036.871654] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8036.971792] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8036.980522] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8037.102014] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8047.055943] vringh:
[ 8047.055946] Guest says index 16 > 16 is available
[ 8057.056106] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8057.165844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8057.174601] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8057.300846] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8057.310357] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8058.974809] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8059.304793] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8068.874952] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 8068.905927] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8069.010129] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8069.018852] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 8069.140349] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8069.873919] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8093.239403] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8093.248824] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8093.296693] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8093.305411] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8093.314186] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8093.322899] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8093.346388] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8103.696701] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8103.725157] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8103.826614] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8103.835370] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8103.956824] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8113.908136] vringh:
[ 8113.908139] Guest says index 16 > 16 is available
[ 8123.908311] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8124.020629] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8124.029386] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8124.156210] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8124.165877] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8135.732142] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23615): suspending device
[ 8135.767390] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8135.870638] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8135.879384] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23615): performing device reset
[ 8136.001524] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8136.731191] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8160.090801] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8160.100179] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8160.146588] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8160.155310] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8160.164086] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8160.172820] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8160.196510] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8170.548296] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8170.576746] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8170.678303] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8170.687034] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8170.808744] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8180.672988] vringh:
[ 8180.672993] Guest says index 16 > 16 is available
[ 8190.673170] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8190.785227] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8190.794000] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8190.922011] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8190.931513] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8202.503336] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23618): suspending device
[ 8202.534052] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8202.638841] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8202.647568] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23618): performing device reset
[ 8202.769243] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8203.494729] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8226.854579] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8226.863939] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8226.908268] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 8226.916997] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 8226.925779] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 8226.934507] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 8226.958326] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 8237.296647] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8237.325330] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8237.427493] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8237.436227] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8237.557800] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8247.429316] vringh:
[ 8247.429319] Guest says index 16 > 16 is available
[ 8257.429494] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8257.542345] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8257.551118] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8257.678038] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8257.687648] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8269.266501] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23617): suspending device
[ 8269.297629] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 8269.401914] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 8269.410665] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23617): performing device reset
[ 8269.533584] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 8270.250593] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8293.609299] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8293.618688] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8293.668471] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8293.677192] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8293.686019] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8293.694748] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8293.718336] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 8303.971686] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8303.998869] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8304.101652] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8304.110376] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8304.232045] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8314.190379] vringh:
[ 8314.190382] Guest says index 16 > 16 is available
[ 8324.190529] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8324.303954] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8324.312713] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8324.440045] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8324.449511] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8336.019703] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23604): suspending device
[ 8336.050084] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8336.153675] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8336.162400] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23604): performing device reset
[ 8336.286024] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23604): memory map update
[ 8337.013688] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8360.373516] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8360.382930] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8360.428059] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 8360.436787] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 8360.445561] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 8360.454280] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 8360.477820] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 8370.828497] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8370.856033] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8370.957456] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8370.966193] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8371.087935] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8381.042498] vringh:
[ 8381.042501] Guest says index 16 > 16 is available
[ 8391.042629] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8391.151861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8391.160619] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8391.287891] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8391.297357] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8402.859849] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23609): suspending device
[ 8402.889938] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 8402.994314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 8403.003050] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23609): performing device reset
[ 8403.124850] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 8403.854812] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8427.214796] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8427.224513] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8427.268677] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8427.277405] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8427.286196] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8427.294913] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8427.318818] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8437.671685] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8437.700244] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8437.801206] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8437.809928] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8437.931493] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8447.886406] vringh:
[ 8447.886409] Guest says index 16 > 16 is available
[ 8457.886586] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8457.998012] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8458.006779] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8458.134010] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8458.143752] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8458.188051] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8458.519884] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8470.216023] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23609): suspending device
[ 8470.247585] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 8470.351323] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 8470.360048] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23609): performing device reset
[ 8470.481896] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23609): memory map update
[ 8471.208247] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8494.568244] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8494.577637] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8494.622657] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8494.631377] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8494.640156] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8494.648877] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8494.672805] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8503.981687] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8504.302841] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8504.940327] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8504.967959] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8505.070051] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8505.078784] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8505.200441] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8515.148557] vringh:
[ 8515.148559] Guest says index 16 > 16 is available
[ 8525.148719] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8525.258782] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8525.267545] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8525.394464] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8525.404105] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8536.974193] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23612): suspending device
[ 8537.003635] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8537.109031] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8537.117758] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23612): performing device reset
[ 8537.239435] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8537.968649] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8561.328436] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8561.338135] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8561.382929] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8561.391652] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8561.400435] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8561.409169] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8561.432982] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 8571.684798] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8571.713718] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8571.815547] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8571.824282] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8571.946455] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8581.901199] vringh:
[ 8581.901203] Guest says index 16 > 16 is available
[ 8591.901340] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8592.011189] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8592.019936] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8592.146617] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8592.156313] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8603.731352] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23618): suspending device
[ 8603.762347] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8603.865117] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8603.873839] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23618): performing device reset
[ 8603.996706] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8604.719233] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8628.079417] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8628.088791] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8628.134375] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8628.143103] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8628.151880] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8628.160593] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8628.184402] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 8638.437777] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8638.465736] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8638.568668] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8638.577408] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8638.699201] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8648.657836] vringh:
[ 8648.657839] Guest says index 16 > 16 is available
[ 8658.658009] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8658.766645] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8658.775408] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8658.902288] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8658.911776] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8670.489596] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23600): suspending device
[ 8670.524486] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 8670.626254] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 8670.634985] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23600): performing device reset
[ 8670.758608] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 8671.485863] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8694.843787] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8694.853170] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8694.896832] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8694.905568] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8694.914352] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8694.923070] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8694.946949] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8705.300047] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8705.328676] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8705.430292] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8705.439020] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8705.561009] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8715.517902] vringh:
[ 8715.517905] Guest says index 16 > 16 is available
[ 8725.518080] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8725.629713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8725.638481] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8725.765551] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8725.775043] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8737.349977] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23605): suspending device
[ 8737.380975] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8737.486269] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8737.495001] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23605): performing device reset
[ 8737.616886] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 8738.346825] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8761.706371] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8761.715776] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8761.763020] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 8761.771747] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 8761.780529] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 8761.789248] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 8761.812716] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23603): memory map update
[ 8772.069589] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8772.097319] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8772.198692] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8772.207425] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8772.329255] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8782.289133] vringh:
[ 8782.289136] Guest says index 16 > 16 is available
[ 8792.289278] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8792.400194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8792.408938] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8792.536149] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8792.545719] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8804.126132] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 8804.161472] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8804.265960] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8804.274693] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 8804.397709] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8805.120617] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8828.479922] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8828.489308] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8828.534858] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8828.543592] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8828.552405] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8828.561124] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8828.587499] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 8838.935892] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8838.963422] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8839.065264] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8839.073991] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8839.195716] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8849.151321] vringh:
[ 8849.151323] Guest says index 16 > 16 is available
[ 8859.151510] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8859.262624] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8859.271389] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8859.399879] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8859.409629] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8870.982333] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 8871.014052] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8871.115962] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8871.124696] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 8871.246440] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 8871.972378] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8895.338896] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8895.348276] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8895.398321] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8895.407045] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8895.415821] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8895.424543] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8895.448350] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8904.987910] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 8905.313137] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23597): memory map update
[ 8905.711029] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8905.740079] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8905.844529] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8905.853254] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8905.974708] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8915.923397] vringh:
[ 8915.923400] Guest says index 16 > 16 is available
[ 8925.923600] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8926.035653] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8926.044438] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8926.172852] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8926.182150] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8937.746644] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23619): suspending device
[ 8937.777388] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8937.879979] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8937.888726] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23619): performing device reset
[ 8938.010378] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 8938.744262] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8962.104706] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8962.114396] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8962.166932] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 8962.175657] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 8962.184456] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 8962.193169] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 8962.221618] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23616): memory map update
[ 8972.560263] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8972.592205] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8972.695400] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8972.704125] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8972.826498] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8982.780859] vringh:
[ 8982.780862] Guest says index 16 > 16 is available
[ 8992.781047] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8992.891417] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8992.900190] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 8993.026781] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 8993.036294] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 8995.991486] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 8996.322945] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9004.610870] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23601): suspending device
[ 9004.640988] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 9004.743136] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 9004.751882] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23601): performing device reset
[ 9004.875497] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23601): memory map update
[ 9005.599875] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9028.951241] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9028.960642] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9029.006058] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 9029.014786] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 9029.023562] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 9029.032279] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 9029.056138] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23617): memory map update
[ 9039.408821] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9039.437177] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9039.538663] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9039.547393] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9039.669075] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9041.995102] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 9042.313588] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23602): memory map update
[ 9049.624671] vringh:
[ 9049.624673] Guest says index 16 > 16 is available
[ 9059.624848] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9059.736345] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9059.745114] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9059.872972] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9059.882521] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9071.452127] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23612): suspending device
[ 9071.486492] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 9071.592179] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 9071.600924] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23612): performing device reset
[ 9071.722581] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23612): memory map update
[ 9072.447013] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9095.806415] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9095.815809] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9095.864804] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9095.873528] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9095.882287] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9095.891009] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9095.914740] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9106.261462] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9106.288971] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9106.391795] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9106.400517] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9106.522361] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9116.477302] vringh:
[ 9116.477304] Guest says index 16 > 16 is available
[ 9126.477497] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9126.592307] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9126.601093] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9126.727812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9126.737384] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9138.317306] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23596): suspending device
[ 9138.345724] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9138.450401] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9138.459137] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23596): performing device reset
[ 9138.582766] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9139.313160] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9162.676592] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9162.686252] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9162.738382] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 9162.747102] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 9162.755883] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 9162.764598] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 9162.788095] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23613): memory map update
[ 9173.032137] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9173.061263] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9173.162918] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9173.171644] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9173.293387] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9183.252169] vringh:
[ 9183.252172] Guest says index 16 > 16 is available
[ 9193.252356] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9193.364946] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9193.373713] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9193.502482] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9193.512027] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9205.086625] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23598): suspending device
[ 9205.118000] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9205.222257] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9205.230988] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23598): performing device reset
[ 9205.353267] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9206.077744] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9229.438819] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9229.448194] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9229.501116] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9229.509862] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9229.518646] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9229.527366] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9229.551274] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9239.895046] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9239.926212] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9240.029359] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9240.038091] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9240.159673] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9250.110641] vringh:
[ 9250.110644] Guest says index 16 > 16 is available
[ 9260.110828] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9260.222499] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9260.231271] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9260.358369] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9260.367875] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9271.937817] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23607): suspending device
[ 9271.970848] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9272.075744] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9272.084483] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23607): performing device reset
[ 9272.206151] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9272.933123] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9296.299746] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9296.309146] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9296.362464] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 9296.371189] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 9296.379979] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 9296.388707] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 9296.412216] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23610): memory map update
[ 9306.669241] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9306.698308] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9306.801686] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9306.810445] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9306.932124] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9316.885052] vringh:
[ 9316.885058] Guest says index 16 > 16 is available
[ 9326.885430] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9326.997904] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9327.006762] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9327.138652] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9327.148991] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9338.712256] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23606): suspending device
[ 9338.743088] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9338.846190] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9338.854918] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23606): performing device reset
[ 9338.977276] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9339.708950] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9363.064626] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9363.074108] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9363.125986] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9363.134706] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9363.143496] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9363.152211] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9363.181627] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9373.420585] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9373.449238] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9373.551949] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9373.560684] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9373.683305] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9383.652474] vringh:
[ 9383.652478] Guest says index 16 > 16 is available
[ 9393.652675] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9393.762912] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9393.771683] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9393.902706] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9393.912397] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9393.966173] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 9394.295164] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 9405.488951] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23606): suspending device
[ 9405.523605] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9405.626245] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9405.634980] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23606): performing device reset
[ 9405.757285] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23606): memory map update
[ 9406.483324] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9429.847439] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9429.856949] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9429.904079] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9429.912804] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9429.921587] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9429.930308] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9429.959741] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9440.110922] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 9440.425752] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9440.461141] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9440.564038] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9440.572801] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9440.695102] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9441.008318] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 9450.657728] vringh:
[ 9450.657732] Guest says index 16 > 16 is available
[ 9460.657915] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9460.768352] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9460.777125] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9460.904732] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9460.914405] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9472.496387] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23618): suspending device
[ 9472.524970] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9472.628912] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9472.637636] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23618): performing device reset
[ 9472.760577] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9473.491747] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9496.853199] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9496.862965] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9496.913085] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9496.921810] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9496.930604] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9496.939321] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9496.966352] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9507.308965] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9507.337876] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9507.439951] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9507.448674] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9507.570236] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9517.536645] vringh:
[ 9517.536649] Guest says index 16 > 16 is available
[ 9527.536824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9527.648374] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9527.657150] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9527.783735] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9527.793400] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9530.004463] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9530.339745] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9539.373667] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23608): suspending device
[ 9539.404817] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 9539.509933] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 9539.518663] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23608): performing device reset
[ 9539.641286] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23608): memory map update
[ 9540.371146] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9563.732273] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9563.741689] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9563.793046] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9563.801773] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9563.810557] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9563.819277] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9563.843036] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23618): memory map update
[ 9574.187842] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9574.220233] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9574.323118] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9574.331856] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9574.454169] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9584.339095] vringh:
[ 9584.339098] Guest says index 16 > 16 is available
[ 9594.339718] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9594.452119] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9594.460899] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9594.588895] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9594.598594] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9606.176730] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23615): suspending device
[ 9606.205288] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 9606.310655] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 9606.319398] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23615): performing device reset
[ 9606.440814] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23615): memory map update
[ 9607.172392] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9630.535353] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9630.545111] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9630.592097] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9630.600821] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9630.609617] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9630.618335] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9630.645834] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9640.994803] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9641.023614] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9641.126500] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9641.135237] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9641.256710] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9651.227782] vringh:
[ 9651.227786] Guest says index 16 > 16 is available
[ 9661.227966] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9661.340375] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9661.349146] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9661.476320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9661.486425] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9673.068703] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23596): suspending device
[ 9673.110219] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9673.215761] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9673.224488] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23596): performing device reset
[ 9673.346583] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23596): memory map update
[ 9674.064972] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9697.426002] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9697.435410] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9697.482276] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9697.491002] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9697.499794] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9697.508529] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9697.535174] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23614): memory map update
[ 9707.886385] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9707.918473] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9708.021903] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9708.030664] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9708.152954] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9718.120084] vringh:
[ 9718.120086] Guest says index 16 > 16 is available
[ 9728.120262] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9728.232382] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9728.241158] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9728.371597] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9728.381368] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9739.949935] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23605): suspending device
[ 9739.983554] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 9740.087703] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 9740.096429] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23605): performing device reset
[ 9740.218087] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23605): memory map update
[ 9740.945870] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9764.299299] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9764.308764] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9764.355733] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9764.364459] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9764.373379] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9764.382122] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9764.408289] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9774.757200] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9774.787964] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9774.889018] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9774.897768] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9775.019638] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9784.987578] vringh:
[ 9784.987581] Guest says index 16 > 16 is available
[ 9794.987765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9795.098026] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9795.106797] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9795.234264] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9795.243932] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9806.817576] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23598): suspending device
[ 9806.848416] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9806.950328] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9806.959053] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23598): performing device reset
[ 9807.083329] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23598): memory map update
[ 9807.812997] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9831.173403] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9831.182853] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9831.228990] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9831.237717] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9831.246674] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9831.255410] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9831.279053] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9841.633058] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9841.661243] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9841.765515] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9841.774269] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9841.896746] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9851.793771] vringh:
[ 9851.793775] Guest says index 16 > 16 is available
[ 9861.793981] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9861.905341] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9861.914120] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9862.041407] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9862.051090] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9873.647929] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23600): suspending device
[ 9873.680280] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9873.783137] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9873.791882] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23600): performing device reset
[ 9873.915331] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23600): memory map update
[ 9874.628132] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9897.995828] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9898.005544] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9898.051689] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9898.060417] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9898.069215] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9898.077932] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9898.106015] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9908.453064] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9908.482036] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9908.585460] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9908.594188] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9908.715747] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9918.688154] vringh:
[ 9918.688159] Guest says index 16 > 16 is available
[ 9928.688375] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9928.802430] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9928.811243] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9928.942658] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 23590): memory map update
[ 9928.952375] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 23590): suspending device
[ 9928.994741] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 9929.327044] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23619): memory map update
[ 9941.017493] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 23607): suspending device
[ 9941.047639] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9941.151198] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9941.159925] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23607): performing device reset
[ 9941.282396] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 23607): memory map update
[ 9942.017518] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9968.085129] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 23590): performing device reset
[ 9990.581728] No such timeout policy "ovs_test_tp"
[ 9990.586368] Failed to associated timeout policy `ovs_test_tp'
[ 9998.166040] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[ 9998.176137] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10010.485489] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35087): memory map update
[10023.105638] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35087): suspending device
[10023.116322] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35087): performing device reset
[10023.322587] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35087): memory map update
[10026.058148] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35103): memory map update
[10026.313197] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35103): memory map update
[10071.370050] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35070): suspending device
[10071.400914] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10071.501610] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10071.510340] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10071.629658] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10071.674218] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10071.684349] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10071.732034] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35101): memory map update
[10071.740760] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35101): memory map update
[10071.749558] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35101): memory map update
[10071.758279] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35101): memory map update
[10071.788352] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35101): memory map update
[10082.133677] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 35070): suspending device
[10082.165071] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10082.265762] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10082.274492] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10082.393836] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10194.493950] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10194.759987] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10195.027779] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 35070): suspending device
[10195.062882] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10195.167443] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10195.176194] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10195.294491] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10195.337450] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35070): suspending device
[10195.369190] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10195.471931] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10195.480655] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10195.598819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10212.740091] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 35087): suspending device
[10212.750508] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35087): performing device reset
[10212.966311] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35087): memory map update
[10212.977943] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35087): suspending device
[10212.988087] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35087): performing device reset
[10213.193112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35087): memory map update
[10215.933203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35100): memory map update
[10216.202631] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35100): memory map update
[10216.469330] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35100): memory map update
[10216.734795] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35100): memory map update
[10262.017532] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 35098): suspending device
[10262.048903] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35098): memory map update
[10262.148772] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35098): memory map update
[10262.157513] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35098): performing device reset
[10262.276564] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 35098): memory map update
[10263.013597] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10365.499677] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10365.748520] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35070): suspending device
[10365.777244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10365.878689] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10365.887411] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10366.006251] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10382.225886] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35087): suspending device
[10382.236349] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35087): performing device reset
[10382.441406] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35087): memory map update
[10385.083859] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35096): memory map update
[10385.338510] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35096): memory map update
[10491.697366] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 35070): suspending device
[10491.725552] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10491.826221] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10491.834988] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35070): performing device reset
[10491.953895] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 35070): memory map update
[10492.082074] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 35091): performing device reset
[10513.086213] No such timeout policy "ovs_test_tp"
[10513.090863] Failed to associated timeout policy `ovs_test_tp'
[10521.329756] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10521.339835] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10530.047458] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36552): memory map update
[10544.397291] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 36552): suspending device
[10544.407855] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 36552): performing device reset
[10544.618226] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36552): memory map update
[10547.761194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36569): memory map update
[10548.077556] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36569): memory map update
[10593.793862] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 36535): suspending device
[10593.821769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10593.922865] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10593.931619] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10594.054107] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10594.099067] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10594.109242] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10594.162031] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36555): memory map update
[10594.170759] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36555): memory map update
[10594.179561] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36555): memory map update
[10594.188280] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36555): memory map update
[10595.044133] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36555): memory map update
[10604.981638] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 36535): suspending device
[10605.012544] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10605.115813] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10605.124537] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10605.247453] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.076073] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 36535): suspending device
[10641.110173] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.219071] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.227788] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10641.351026] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.392040] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 36535): suspending device
[10641.428122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.529770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.538525] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10641.660752] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 36535): memory map update
[10641.792842] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10641.801715] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 36535): performing device reset
[10655.116542] No such timeout policy "ovs_test_tp"
[10655.121186] Failed to associated timeout policy `ovs_test_tp'
[10662.978497] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10662.988566] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10670.394806] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37421): memory map update
[10696.891446] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 37421): suspending device
[10696.902074] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 37421): performing device reset
[10697.112824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37421): memory map update
[10699.744647] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37444): memory map update
[10700.061274] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37444): memory map update
[10745.156179] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 37404): suspending device
[10745.185946] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10745.286687] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10745.295413] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10745.417861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10745.462384] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10745.472523] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10745.518698] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37422): memory map update
[10745.527422] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37422): memory map update
[10745.536224] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37422): memory map update
[10745.544944] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37422): memory map update
[10745.568508] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37422): memory map update
[10755.826435] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 37404): suspending device
[10755.854522] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10755.960391] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10755.969119] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10756.090281] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10777.594490] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 37436): suspending device
[10777.631916] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37436): memory map update
[10777.743854] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37436): memory map update
[10777.752585] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 37436): performing device reset
[10777.875923] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 37436): memory map update
[10778.590786] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10793.695875] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 37404): suspending device
[10793.724565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10793.827170] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10793.835908] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 37404): performing device reset
[10793.957841] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 37404): memory map update
[10794.105536] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 37709): performing device reset
[10814.098155] No such timeout policy "ovs_test_tp"
[10814.102792] Failed to associated timeout policy `ovs_test_tp'
[10821.351422] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10821.361483] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10831.249819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38335): memory map update
[10867.312983] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38335): suspending device
[10867.322826] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38335): performing device reset
[10867.532404] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38335): memory map update
[10871.740678] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38348): memory map update
[10872.055453] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38348): memory map update
[10918.022089] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38318): suspending device
[10918.057957] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10918.156693] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10918.165433] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10918.288350] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10918.335937] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10918.346148] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10918.395531] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38345): memory map update
[10918.404264] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38345): memory map update
[10918.413156] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38345): memory map update
[10918.421890] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38345): memory map update
[10918.448490] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38345): memory map update
[10928.692988] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 38318): suspending device
[10928.724853] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10928.827550] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10928.836277] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10928.957869] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10950.361251] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10950.704680] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10951.046013] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 38318): suspending device
[10951.083357] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10951.189750] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10951.198482] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10951.320150] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10951.364526] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38318): suspending device
[10951.395931] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10951.495161] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10951.503884] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[10951.624853] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[10968.718911] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 38335): suspending device
[10968.729840] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38335): performing device reset
[10968.949593] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38335): memory map update
[10968.961441] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38335): suspending device
[10968.971880] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38335): performing device reset
[10969.179131] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38335): memory map update
[10972.108832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38340): memory map update
[10972.410305] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38340): memory map update
[10972.708657] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38340): memory map update
[10973.006696] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38340): memory map update
[11017.932269] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 38354): suspending device
[11017.965442] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38354): memory map update
[11018.068385] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38354): memory map update
[11018.077128] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38354): performing device reset
[11018.197782] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 38354): memory map update
[11018.927658] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[11030.457456] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11030.740865] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38318): suspending device
[11030.769087] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11030.870171] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11030.878900] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[11030.998963] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11047.420634] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38335): suspending device
[11047.430684] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38335): performing device reset
[11047.638818] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38335): memory map update
[11050.498861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38358): memory map update
[11050.781124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38358): memory map update
[11157.732541] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 38318): suspending device
[11157.762538] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11157.861203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11157.869938] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[11157.990408] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 38318): memory map update
[11158.127678] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 38318): performing device reset
[11172.438231] No such timeout policy "ovs_test_tp"
[11172.442877] Failed to associated timeout policy `ovs_test_tp'
[11182.074359] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.084445] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.093471] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.103522] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.112539] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.136340] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.145356] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11182.155339] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11191.897095] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11192.250055] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11192.619628] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11192.915806] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11222.469173] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11222.481191] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11222.640952] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11222.653644] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11222.664909] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11222.821559] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11222.833528] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11222.843750] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11223.064081] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11223.075682] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11223.085738] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11223.294562] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11226.989787] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11227.400831] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11227.812881] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11228.210068] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11228.601266] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11229.001183] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11229.400049] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11229.789901] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11249.230609] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11249.586144] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11249.963888] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11250.344202] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11250.742160] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11250.793340] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11250.929024] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11250.937759] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11251.058767] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.102513] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11251.144623] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.265295] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.274027] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11251.394822] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.437354] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11251.474033] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.579201] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.587934] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11251.709305] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.753262] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11251.781797] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.884451] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11251.893185] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11252.014591] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11271.201841] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11271.215161] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11271.461566] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11271.474203] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11271.485963] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11271.705552] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11271.717535] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11271.728508] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11271.947069] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11271.958584] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11271.969062] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11272.179155] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11275.827010] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11276.237237] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11276.644953] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11277.037858] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11277.436063] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11277.844622] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11278.245713] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11278.640259] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39554): memory map update
[11295.326675] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11295.681698] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11296.056780] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11296.438063] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11296.829933] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11296.880597] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.018073] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.026797] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11297.146994] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.191809] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11297.236476] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.355804] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.364529] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11297.485628] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.530626] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11297.567019] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.674325] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.683050] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11297.804767] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.847444] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11297.880766] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.983211] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11297.991935] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11298.113833] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11317.672664] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11317.686099] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11317.933716] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11317.946518] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11317.958044] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11318.178887] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11318.190897] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11318.201476] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11318.422200] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11318.433844] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11318.444067] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11318.653042] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11322.251032] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11322.650991] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11323.051275] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11323.445125] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11323.839446] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11324.241027] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11324.643334] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11325.036765] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39539): memory map update
[11341.427991] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11341.789012] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11342.168243] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11342.552234] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11342.950438] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11343.002678] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.146546] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.155278] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11343.275591] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.318174] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11343.360587] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.481556] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.490283] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11343.611069] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.654272] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11343.688443] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.795458] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.804187] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11343.925461] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11343.970943] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11343.999593] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11344.102572] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11344.111297] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11344.232725] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11363.867569] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11363.881304] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11364.122932] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11364.135777] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11364.147104] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11364.365700] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11364.377702] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11364.388314] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11364.606624] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11364.618088] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11364.628641] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11364.836623] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11368.540151] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11368.941182] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11369.351044] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11369.753990] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11370.152306] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11370.553901] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11370.953689] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11371.348167] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39540): memory map update
[11387.812264] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11388.175530] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11388.553916] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11388.940363] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11389.338266] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11389.390755] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11389.530971] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11389.539722] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11389.660222] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11389.707423] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11389.751170] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11389.872323] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11389.881071] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11390.002160] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11390.045139] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11390.080219] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11390.185359] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11390.194096] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11390.315314] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11390.360067] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11390.388106] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11390.490656] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11390.499392] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11390.621321] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11409.700633] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11409.713932] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11409.958628] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11409.971423] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11409.982672] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11410.207143] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11410.219145] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11410.230021] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11410.449857] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11410.461294] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11410.471598] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11410.682217] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11414.305863] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11414.711117] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11415.120525] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11415.524872] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11415.929777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11416.335631] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11416.738821] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11417.139053] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39541): memory map update
[11433.881336] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11434.239269] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11434.614977] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11434.997905] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11435.392200] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11435.446117] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11435.592079] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11435.600826] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11435.722232] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11435.768853] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11435.811388] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11435.934685] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11435.943415] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11436.064468] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11436.112462] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11436.147304] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11436.253499] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11436.262220] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11436.384608] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11436.427256] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11436.455856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11436.559749] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11436.568473] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11436.690650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11455.864553] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11455.877162] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11456.125231] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11456.137828] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11456.149417] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11456.370535] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11456.382506] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11456.393020] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11456.610482] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11456.622014] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11456.632181] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11456.842779] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11460.588314] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11460.996006] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11461.403951] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11461.802441] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11462.205528] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11462.607175] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11463.011452] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11463.403438] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11483.309020] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11483.670381] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11484.048534] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11484.436430] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11484.835355] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11484.888246] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.033149] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.041873] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11485.162975] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.208834] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11485.254080] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.374521] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.383263] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11485.504760] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.551627] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11485.588854] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.695750] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.704481] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11485.825855] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11485.869455] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11485.898809] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11486.000120] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11486.008871] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11486.130421] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11505.142889] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11505.156607] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11505.401128] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11505.413967] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11505.425293] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11505.645964] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11505.657855] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11505.668174] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11505.888372] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11505.899791] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11505.909904] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11506.120044] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11509.739236] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11510.139581] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11510.544362] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11510.945670] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11511.349236] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11511.753353] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11512.154309] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11512.559580] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39546): memory map update
[11533.420566] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11533.781953] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11534.163064] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11534.551971] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11534.956020] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11535.007896] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.148111] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.157095] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11535.277628] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.320009] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11535.362661] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.485915] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.494633] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11535.616123] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.658947] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11535.694159] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.801247] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.810606] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11535.932243] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11535.976037] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39518): suspending device
[11536.004374] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11536.108661] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11536.117386] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[11536.238716] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39518): memory map update
[11555.184484] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11555.197945] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11555.444685] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11555.457277] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11555.468602] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11555.692727] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11555.704582] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11555.715358] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11555.934696] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11555.946098] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39535): suspending device
[11555.956493] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39535): performing device reset
[11556.166119] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39535): memory map update
[11559.050126] vringh:
[11559.050129] Guest says index 16 > 16 is available
[11569.050277] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11569.270839] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11569.481870] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39538): performing device reset
[11569.700776] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 39538): memory map update
[11569.710703] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 39538): suspending device
[11570.000451] vringh:
[11570.000455] Guest says index 16 > 16 is available
[11580.000661] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39536): memory map update
[11580.222063] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39536): memory map update
[11580.433336] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39536): performing device reset
[11580.648567] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 39536): memory map update
[11580.658672] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 39536): suspending device
[11580.943904] vringh:
[11580.943906] Guest says index 16 > 16 is available
[11590.944064] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39557): memory map update
[11591.160714] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39557): memory map update
[11591.368837] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39557): performing device reset
[11591.589961] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 39557): memory map update
[11591.600011] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 39557): suspending device
[11591.894123] vringh:
[11591.894127] Guest says index 16 > 16 is available
[11601.894312] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39557): memory map update
[11602.109796] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39557): memory map update
[11602.316106] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39557): performing device reset
[11602.532425] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 39557): memory map update
[11602.542773] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 39557): suspending device
[12112.225335] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[12112.234140] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[12112.242943] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[12112.251763] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 39518): performing device reset
[12131.428232] No such timeout policy "ovs_test_tp"
[12131.432873] Failed to associated timeout policy `ovs_test_tp'
[12135.328461] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 45041): performing device reset
[12135.338536] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 45041): performing device reset
[12142.155921] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 45288): performing device reset
[12142.166087] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 45288): performing device reset
[12143.373511] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45047): memory map update
[12150.032769] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45294): memory map update
[12155.731960] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 45047): suspending device
[12155.743759] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 45047): performing device reset
[12155.963387] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45047): memory map update
[12158.669962] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45062): memory map update
[12159.004652] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45062): memory map update
[12163.595629] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 45294): suspending device
[12163.606652] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 45294): performing device reset
[12163.827346] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45294): memory map update
[12166.590305] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45296): memory map update
[12166.930902] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45296): memory map update
[12758.206400] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45055): memory map update
[12758.542797] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45055): memory map update
[12792.508472] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 45041): suspending device
[12792.543450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45041): memory map update
[12792.644609] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45041): memory map update
[12792.653350] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 45041): performing device reset
[12792.775732] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 45041): memory map update
[12792.902103] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 47323): performing device reset
[12794.977474] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45314): memory map update
[12795.310980] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45314): memory map update
[12854.932625] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 45288): suspending device
[12854.962134] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45288): memory map update
[12855.066701] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45288): memory map update
[12855.075464] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 45288): performing device reset
[12855.198221] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 45288): memory map update
[12855.359844] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 45316): performing device reset
[12867.312584] No such timeout policy "ovs_test_tp"
[12867.317249] Failed to associated timeout policy `ovs_test_tp'
[12871.109821] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48087): performing device reset
[12871.119966] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48087): performing device reset
[12878.886216] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48093): memory map update
[12891.387118] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 48093): suspending device
[12891.397926] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48093): performing device reset
[12891.607371] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48093): memory map update
[12894.406895] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48095): memory map update
[12894.725577] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48095): memory map update
[12953.438056] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 48087): suspending device
[12953.464913] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48087): memory map update
[12953.565034] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48087): memory map update
[12953.573765] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48087): performing device reset
[12953.695528] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48087): memory map update
[12953.840859] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48087): performing device reset
[12959.685544] No such timeout policy "ovs_test_tp"
[12959.690184] Failed to associated timeout policy `ovs_test_tp'
[12963.555873] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48886): performing device reset
[12963.565960] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48886): performing device reset
[12970.469840] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 49131): performing device reset
[12970.479937] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 49131): performing device reset
[12971.693172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48892): memory map update
[12978.405489] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49137): memory map update
[12984.728483] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 48892): suspending device
[12984.740520] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48892): performing device reset
[12984.957928] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48892): memory map update
[12987.671016] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48898): memory map update
[12988.007562] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48898): memory map update
[12990.765940] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 49137): suspending device
[12990.777097] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 49137): performing device reset
[12991.000544] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49137): memory map update
[12994.578340] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49137): memory map update
[12994.916834] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49137): memory map update
[13257.645291] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 48886): suspending device
[13257.672984] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48886): memory map update
[13257.774546] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48886): memory map update
[13257.783278] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48886): performing device reset
[13257.906335] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 48886): memory map update
[13258.047607] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 48886): performing device reset
[13319.924336] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 49131): suspending device
[13319.953171] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49131): memory map update
[13320.054510] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49131): memory map update
[13320.063271] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 49131): performing device reset
[13320.185660] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 49131): memory map update
[13320.320218] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 49131): performing device reset
[13331.433597] No such timeout policy "ovs_test_tp"
[13331.438243] Failed to associated timeout policy `ovs_test_tp'
[13335.293896] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 50961): performing device reset
[13335.304005] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 50961): performing device reset
[13342.102006] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 51207): performing device reset
[13342.112120] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 51207): performing device reset
[13343.195379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50967): memory map update
[13350.095171] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51213): memory map update
[13355.730664] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 50967): suspending device
[13355.742386] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 50967): performing device reset
[13355.960961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50967): memory map update
[13358.693183] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50975): memory map update
[13359.023920] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50975): memory map update
[13363.088703] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 51213): suspending device
[13363.099246] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 51213): performing device reset
[13363.320822] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51213): memory map update
[13367.685477] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51215): memory map update
[13368.020112] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51215): memory map update
[13629.561345] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 50961): suspending device
[13629.588808] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50961): memory map update
[13629.691208] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50961): memory map update
[13629.699933] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 50961): performing device reset
[13629.822209] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 50961): memory map update
[13629.953461] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 50961): performing device reset
[13691.802833] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 51207): suspending device
[13691.832246] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51207): memory map update
[13691.933696] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51207): memory map update
[13691.942432] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 51207): performing device reset
[13692.063641] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 51207): memory map update
[13692.189604] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 51238): performing device reset
[13703.624836] No such timeout policy "ovs_test_tp"
[13703.629488] Failed to associated timeout policy `ovs_test_tp'
[13707.534780] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 53022): performing device reset
[13707.544851] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 53022): performing device reset
[13714.244073] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 53265): performing device reset
[13714.254293] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 53265): performing device reset
[13715.502574] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53028): memory map update
[13722.369008] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53271): memory map update
[13728.140692] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 53028): suspending device
[13728.152270] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 53028): performing device reset
[13728.371164] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53028): memory map update
[13731.030362] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53041): memory map update
[13731.367144] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53041): memory map update
[13734.971824] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 53271): suspending device
[13734.982138] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 53271): performing device reset
[13735.204595] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53271): memory map update
[13738.196724] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53290): memory map update
[13738.535690] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53290): memory map update
[14001.244325] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 53022): suspending device
[14001.271839] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53022): memory map update
[14001.373211] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53022): memory map update
[14001.381935] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 53022): performing device reset
[14001.503708] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 53022): memory map update
[14001.630390] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 53041): performing device reset
[14063.486598] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 53265): suspending device
[14063.516819] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53265): memory map update
[14063.618615] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53265): memory map update
[14063.627370] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 53265): performing device reset
[14063.748964] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 53265): memory map update
[14063.879904] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 54406): performing device reset
[14074.016995] No such timeout policy "ovs_test_tp"
[14074.021659] Failed to associated timeout policy `ovs_test_tp'
[14077.879882] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 55046): performing device reset
[14077.889998] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 55046): performing device reset
[14084.711896] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 55290): performing device reset
[14084.722006] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 55290): performing device reset
[14085.710297] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55052): memory map update
[14092.666565] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55296): memory map update
[14098.325325] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 55052): suspending device
[14098.336514] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 55052): performing device reset
[14098.556652] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55052): memory map update
[14102.175186] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55070): memory map update
[14102.506845] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55070): memory map update
[14142.385121] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 55296): suspending device
[14142.395989] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 55296): performing device reset
[14142.607666] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55296): memory map update
[14146.763500] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55297): memory map update
[14147.052673] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55297): memory map update
[14398.326081] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 55046): suspending device
[14398.354145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55046): memory map update
[14398.455758] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55046): memory map update
[14398.464520] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 55046): performing device reset
[14398.586943] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 55046): memory map update
[14398.729189] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 55074): performing device reset
[14460.575660] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 55290): suspending device
[14460.602851] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55290): memory map update
[14460.705426] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55290): memory map update
[14460.714178] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 55290): performing device reset
[14460.835610] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 55290): memory map update
[14460.977322] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 56553): performing device reset
[14470.711186] No such timeout policy "ovs_test_tp"
[14470.715829] Failed to associated timeout policy `ovs_test_tp'
[14474.541028] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 57196): performing device reset
[14474.551160] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 57196): performing device reset
[14481.336963] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 57441): performing device reset
[14481.347013] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 57441): performing device reset
[14482.434102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57202): memory map update
[14489.431444] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57447): memory map update
[14495.007450] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 57202): suspending device
[14495.018248] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 57202): performing device reset
[14495.236851] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57202): memory map update
[14497.951483] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57225): memory map update
[14498.284384] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57225): memory map update
[14502.445819] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 57447): suspending device
[14502.456832] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 57447): performing device reset
[14502.678023] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57447): memory map update
[14505.429156] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57466): memory map update
[14505.725666] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57466): memory map update
[14767.879616] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 57196): suspending device
[14767.910287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57196): memory map update
[14768.011689] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57196): memory map update
[14768.020420] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 57196): performing device reset
[14768.143262] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 57196): memory map update
[14768.276561] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 57227): performing device reset
[14830.134551] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 57441): suspending device
[14830.164544] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57441): memory map update
[14830.264986] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57441): memory map update
[14830.273723] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 57441): performing device reset
[14830.393612] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 57441): memory map update
[14830.527323] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 57468): performing device reset
[14841.302762] No such timeout policy "ovs_test_tp"
[14841.307414] Failed to associated timeout policy `ovs_test_tp'
[14845.175003] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 59257): performing device reset
[14845.185114] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 59257): performing device reset
[14851.990171] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 59502): performing device reset
[14852.000511] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 59502): performing device reset
[14852.973042] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59263): memory map update
[14859.974123] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59508): memory map update
[14865.403973] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 59263): suspending device
[14865.415503] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 59263): performing device reset
[14865.636578] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59263): memory map update
[14868.513772] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59263): memory map update
[14868.846908] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59263): memory map update
[14872.736914] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 59508): suspending device
[14872.747861] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 59508): performing device reset
[14872.968581] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59508): memory map update
[14876.705884] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59529): memory map update
[14877.039423] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59529): memory map update
[15139.402020] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 59257): suspending device
[15139.433017] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59257): memory map update
[15139.533897] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59257): memory map update
[15139.542663] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 59257): performing device reset
[15139.664274] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 59257): memory map update
[15139.794555] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 59257): performing device reset
[15201.651639] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 59502): suspending device
[15201.681432] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59502): memory map update
[15201.784817] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59502): memory map update
[15201.793555] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 59502): performing device reset
[15201.916192] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 59502): memory map update
[15202.040376] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 60685): performing device reset
[15213.535033] No such timeout policy "ovs_test_tp"
[15213.539679] Failed to associated timeout policy `ovs_test_tp'
[15217.570994] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 61335): performing device reset
[15217.581092] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 61335): performing device reset
[15224.229982] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 61578): performing device reset
[15224.240130] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 61578): performing device reset
[15225.171309] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61341): memory map update
[15232.389402] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61584): memory map update
[15237.403412] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 61341): suspending device
[15237.414150] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 61341): performing device reset
[15237.634241] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61341): memory map update
[15241.154583] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61354): memory map update
[15241.489239] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61354): memory map update
[15244.839253] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 61584): suspending device
[15244.849997] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 61584): performing device reset
[15245.073225] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61584): memory map update
[15248.954378] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61602): memory map update
[15249.251748] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61602): memory map update
[15511.957238] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 61335): suspending device
[15511.987440] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61335): memory map update
[15512.090233] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61335): memory map update
[15512.098978] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 61335): performing device reset
[15512.221790] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 61335): memory map update
[15512.364185] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 61335): performing device reset
[15574.249306] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 61578): suspending device
[15574.276608] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61578): memory map update
[15574.377864] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61578): memory map update
[15574.386589] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 61578): performing device reset
[15574.506808] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 61578): memory map update
[15574.655869] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 62708): performing device reset
[15585.127395] No such timeout policy "ovs_test_tp"
[15585.132042] Failed to associated timeout policy `ovs_test_tp'
[15588.928972] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 63360): performing device reset
[15588.939073] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 63360): performing device reset
[15596.958003] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63366): memory map update
[15609.374955] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 63366): suspending device
[15609.385825] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 63366): performing device reset
[15609.597744] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63366): memory map update
[15612.701072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63369): memory map update
[15613.017104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63369): memory map update
[15696.741597] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 63360): suspending device
[15696.769824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63360): memory map update
[15696.862226] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63360): memory map update
[15696.870993] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 63360): performing device reset
[15696.993312] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 63360): memory map update
[15697.119313] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 63360): performing device reset
[15702.831716] No such timeout policy "ovs_test_tp"
[15702.836362] Failed to associated timeout policy `ovs_test_tp'
[15706.610587] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64307): performing device reset
[15706.620649] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64307): performing device reset
[15714.467287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64313): memory map update
[15727.470748] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 64313): suspending device
[15727.481154] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64313): performing device reset
[15727.689055] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64313): memory map update
[15730.347309] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64327): memory map update
[15730.624911] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64327): memory map update
[15752.868408] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15753.142304] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 64307): suspending device
[15753.171533] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15753.275046] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15753.283780] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64307): performing device reset
[15753.404140] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15769.802627] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 64313): suspending device
[15769.813054] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64313): performing device reset
[15770.019195] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64313): memory map update
[15773.209177] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64321): memory map update
[15773.490622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64321): memory map update
[15870.155606] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 64307): suspending device
[15870.177755] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15870.252108] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15870.260838] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64307): performing device reset
[15870.381518] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 64307): memory map update
[15870.431070] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 64307): performing device reset
[15878.781070] No such timeout policy "ovs_test_tp"
[15878.785711] Failed to associated timeout policy `ovs_test_tp'
[15882.668925] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 65397): performing device reset
[15882.679025] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 65397): performing device reset
[15890.519171] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65403): memory map update
[15902.714707] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 65403): suspending device
[15902.725390] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 65403): performing device reset
[15902.934710] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65403): memory map update
[15905.666067] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65403): memory map update
[15905.981921] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65403): memory map update
[16101.110532] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 65397): suspending device
[16101.137421] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65397): memory map update
[16101.237523] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65397): memory map update
[16101.246246] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 65397): performing device reset
[16101.368146] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 65397): memory map update
[16101.499048] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 65509): performing device reset
[16108.288153] No such timeout policy "ovs_test_tp"
[16108.292815] Failed to associated timeout policy `ovs_test_tp'
[16112.155784] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 69269): performing device reset
[16112.165889] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 69269): performing device reset
[16120.010963] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69275): memory map update
[16132.177715] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 69275): suspending device
[16132.188270] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 69275): performing device reset
[16132.398770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69275): memory map update
[16135.016700] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69291): memory map update
[16135.328799] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69291): memory map update
[16327.683763] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 69269): suspending device
[16327.709328] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69269): memory map update
[16327.809167] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69269): memory map update
[16327.817923] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 69269): performing device reset
[16327.940210] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 69269): memory map update
[16328.076981] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 72587): performing device reset
[16334.512028] No such timeout policy "ovs_test_tp"
[16334.516672] Failed to associated timeout policy `ovs_test_tp'
[16338.314945] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 73208): performing device reset
[16338.325015] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 73208): performing device reset
[16346.197079] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16358.334077] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 73214): suspending device
[16358.345320] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 73214): performing device reset
[16358.555903] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16361.325746] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16361.641699] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16380.046415] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16380.474492] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16382.445571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16382.837180] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16384.840777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16385.229313] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16387.239658] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16387.628674] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16389.638128] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16390.029104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16392.035618] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16392.422942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16394.434189] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16394.821388] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16396.831040] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16397.214228] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16399.225537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16399.618068] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73227): memory map update
[16401.624831] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16402.015050] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16404.023594] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16404.409298] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16406.419394] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16406.806643] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16408.818323] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16409.203334] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16411.213813] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16411.602941] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16413.615224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16414.002704] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73233): memory map update
[16416.013826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16416.400124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16418.409304] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16418.795930] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73234): memory map update
[16420.807173] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16421.194416] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16423.206200] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16423.596231] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16425.603878] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16425.992244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16428.004033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16428.397302] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16430.407680] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16430.792358] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16432.805230] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16433.192253] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16435.201292] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16435.588202] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16437.598941] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16437.990574] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16439.997093] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16440.388663] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16442.397174] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16442.786923] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16444.797777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16445.185124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16447.196546] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16447.585221] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16449.594396] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16449.976271] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16451.988500] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16452.380008] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16454.386836] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16454.775511] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16456.785936] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16457.176072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73235): memory map update
[16459.191012] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16459.577145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16461.587403] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16461.975599] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73235): memory map update
[16463.986234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16464.381468] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16466.389348] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16466.777410] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73235): memory map update
[16468.792359] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16469.181674] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73235): memory map update
[16471.192102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16471.584660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16473.592073] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16473.984733] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16475.994828] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16476.381552] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16478.391737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16478.780208] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16480.791959] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16481.180025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16483.188537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16483.581773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73227): memory map update
[16485.591362] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16485.979289] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16487.987013] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16488.375902] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73236): memory map update
[16490.385415] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16490.775098] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73227): memory map update
[16492.780906] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16493.172106] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73237): memory map update
[16495.183369] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16495.574547] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16497.582548] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16497.971600] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16499.983207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16500.375379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16502.382198] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16502.773226] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16504.784660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16505.177627] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16507.184750] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16507.576124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16509.581881] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16509.971416] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16511.980678] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16512.371464] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16514.380397] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16514.771761] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16516.781033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16517.175911] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16519.179978] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16519.569329] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16521.576620] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16521.967713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16523.976813] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16524.368874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16526.375327] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16526.760581] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16528.770472] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16529.163035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73229): memory map update
[16531.170205] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16531.559384] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16533.567671] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16533.955760] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73229): memory map update
[16535.966311] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16536.355333] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16538.364484] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16538.757290] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16540.766773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16541.154348] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16543.164488] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16543.552062] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16545.561174] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16545.948118] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16547.957164] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16548.345249] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73229): memory map update
[16550.359591] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16550.747866] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73236): memory map update
[16552.757724] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16553.145403] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16555.152980] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16555.545484] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16557.554594] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16557.943177] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16559.953821] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16560.347194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16562.353505] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16562.743517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16564.751070] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16565.139656] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16567.148765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16567.536228] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16569.546156] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16569.936914] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16571.946112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16572.344128] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16574.345927] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16574.738154] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16576.748662] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16577.137510] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16579.146315] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16579.538644] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16581.546191] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16581.937189] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16583.945819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16584.334145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16586.345226] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16586.735002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16588.743994] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16589.137059] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16591.144022] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16591.532365] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16593.542831] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16593.932292] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16595.945416] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16596.340152] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16598.347364] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16598.731843] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16600.742891] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16601.139508] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16603.148607] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16603.541102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16605.550583] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16605.944172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16607.950362] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16608.340257] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16610.350405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16610.740104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16612.750516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16613.138282] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16615.152124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16615.542508] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16617.551944] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16617.941799] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16619.950762] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16620.345493] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16622.355499] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16622.753388] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16624.755210] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16625.142405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16627.150872] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16627.555685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16629.562905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16629.954951] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73232): memory map update
[16631.963119] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16632.353747] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16634.360352] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16634.752807] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73237): memory map update
[16636.760160] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16637.150388] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73226): memory map update
[16639.161656] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16639.556939] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16641.566832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16641.961096] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16643.967997] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16644.363127] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73226): memory map update
[16646.370586] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16646.766916] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16648.777444] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16649.166522] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73226): memory map update
[16651.174901] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16651.564932] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16653.574456] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16653.967046] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16655.976601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16656.367993] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16658.377459] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16658.765258] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16660.775684] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16661.169285] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16663.173261] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16663.565859] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16665.573903] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16665.970101] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16667.982410] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16668.371926] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16670.379744] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16670.769293] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16672.780751] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16673.164023] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16675.174228] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16675.575635] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16677.577675] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16677.972990] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73226): memory map update
[16679.978488] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16680.369625] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16682.380488] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16682.782911] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16684.782562] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16685.174779] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16687.186671] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16687.579820] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16689.587618] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16689.978146] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16691.989850] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16692.382556] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73236): memory map update
[16694.391923] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16694.782275] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16696.793309] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16697.189035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16699.195917] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16699.588187] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73235): memory map update
[16701.597816] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16701.991080] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16704.000591] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16704.394287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16706.402835] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16706.794986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16708.801462] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16709.197840] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16711.205336] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16711.600993] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16713.608772] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16714.000275] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16716.007192] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16716.397105] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16718.408041] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16718.800144] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16720.809183] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16721.202990] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16723.209223] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16723.604984] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16725.608781] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16726.001466] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16728.011074] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16728.399738] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73226): memory map update
[16730.410137] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16730.805217] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16732.809618] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16733.205745] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16735.210746] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16735.611525] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16737.613844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16738.011408] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16740.021649] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16740.417602] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16742.426241] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16742.819770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16744.830427] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16745.226246] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73230): memory map update
[16747.233848] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16747.625060] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73226): memory map update
[16749.636032] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16750.030897] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16752.039215] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16752.434178] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16754.444699] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16754.839868] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16756.847072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16757.246099] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16759.255292] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16759.645633] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73231): memory map update
[16761.656242] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16762.048001] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16764.058033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16764.451701] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16766.461053] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16766.855726] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16768.863203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16769.256604] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16771.265382] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16771.657377] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16773.667031] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16774.062468] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16776.069730] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16776.461015] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16778.470589] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16778.858102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16780.867563] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16781.263459] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16783.270309] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16783.668721] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16785.677435] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16786.072465] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16788.082103] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16788.476668] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16790.483713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16790.877983] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73237): memory map update
[16792.884685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16793.277623] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16795.287271] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16795.684485] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73227): memory map update
[16797.692765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16798.088941] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16800.095373] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16800.492576] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73227): memory map update
[16802.502087] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16802.903458] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73234): memory map update
[16804.912363] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16805.310005] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16807.317447] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16807.712002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16809.722702] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16810.115535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16812.124680] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16812.518660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16814.529551] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16814.921588] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16816.931112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16817.328465] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16819.333659] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16819.732196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16821.738117] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16822.135665] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16824.143612] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16824.539862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73234): memory map update
[16826.546936] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16826.946914] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73237): memory map update
[16828.953900] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16829.360326] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73215): memory map update
[16831.361942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16831.753139] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16833.762060] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16834.156871] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16836.165325] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16836.559103] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16838.569389] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16838.962261] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16840.971822] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16841.364365] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16843.373856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16843.767540] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16845.776348] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16846.172287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16848.181975] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16848.577342] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16850.586864] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16850.984913] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16852.991037] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16853.385113] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16855.395227] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16855.792915] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16857.799728] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16858.197223] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16860.207119] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16860.601758] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16862.609831] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16863.007056] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16865.016469] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16865.409751] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16867.419372] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16867.815852] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16869.824852] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16870.222893] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16872.231808] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16872.624914] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16874.636060] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16875.035341] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73237): memory map update
[16877.044340] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16877.443055] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16879.450058] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16879.846942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16881.857203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16882.252945] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73230): memory map update
[16884.261640] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16884.657512] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16886.666301] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16887.062465] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16889.070425] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16889.468013] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16891.474694] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16891.871937] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16893.882047] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16894.283091] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16896.293141] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16896.687990] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73230): memory map update
[16898.696413] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16899.097014] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16901.101878] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16901.497032] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73230): memory map update
[16903.505961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16903.907943] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16905.913348] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16906.310458] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73232): memory map update
[16908.318225] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16908.718826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73232): memory map update
[16910.722757] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16911.118248] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16913.129082] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16913.525845] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16915.533988] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16915.929023] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16917.936917] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16918.330408] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16920.341227] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16920.738635] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73214): memory map update
[16922.748284] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16923.144373] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16925.154142] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16925.550982] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16927.558902] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16927.953941] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16929.964927] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16930.357547] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16932.368328] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16932.764517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16934.772491] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16935.168939] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73225): memory map update
[16937.177378] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16937.571808] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16939.582682] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16939.980907] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16941.990426] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16942.390450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16944.395934] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16944.792526] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16946.800679] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16947.196670] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16949.206628] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16949.600371] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16951.611696] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16952.008486] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16954.017025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16954.412035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16956.422164] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16956.817538] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73223): memory map update
[16958.828147] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16959.225868] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73228): memory map update
[16961.232640] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16961.631827] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73216): memory map update
[16963.638980] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16964.033610] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16966.045650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16966.453207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16968.457126] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16968.853237] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73220): memory map update
[16970.862169] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16971.259577] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16973.270438] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16973.669137] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73221): memory map update
[16975.677977] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16976.077096] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16978.086703] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16978.484908] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16980.492413] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16980.888902] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73222): memory map update
[16982.899537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16983.301983] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16985.308300] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16985.704337] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73224): memory map update
[16987.715509] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16988.118546] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16990.122213] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16990.524191] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73217): memory map update
[16992.534836] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[16992.930351] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73219): memory map update
[16997.859973] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[16998.183137] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73218): memory map update
[17057.846279] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 73208): suspending device
[17057.875109] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[17057.981001] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[17057.989766] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 73208): performing device reset
[17058.114688] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 73208): memory map update
[17058.256037] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 73208): performing device reset
[17066.168234] No such timeout policy "ovs_test_tp"
[17066.172879] Failed to associated timeout policy `ovs_test_tp'
[17069.948867] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 74887): performing device reset
[17069.958944] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 74887): performing device reset
[17077.848129] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[17089.958943] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 74893): suspending device
[17089.969466] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 74893): performing device reset
[17090.182997] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[17094.326770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74908): memory map update
[17094.655769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74908): memory map update
[17113.120216] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17113.519515] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17113.918684] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17114.316346] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17114.716876] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17115.119193] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17115.522388] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17115.920142] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17116.313738] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17117.269721] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17118.303831] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17119.601406] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17120.893181] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17122.326653] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17123.757599] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17125.452975] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17127.136334] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17128.962963] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17130.788290] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17132.876839] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17134.954352] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17137.175892] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17139.525157] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17141.875627] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17144.486571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17147.100298] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17149.842359] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17152.585985] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17155.580815] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17158.585475] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17161.722018] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17164.987702] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17168.257098] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17171.655224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17175.175172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17178.827815] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17182.620248] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17186.413113] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17190.335769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17194.390844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17198.575824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17202.761919] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17207.078511] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17211.526355] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17216.105870] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17220.685561] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17225.396545] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17230.237237] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17235.209549] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17240.312338] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17245.413418] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17250.655703] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17256.033070] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17261.532318] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17267.029377] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17272.661145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17278.424611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17284.312800] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17290.202133] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17296.222025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17302.372726] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17308.665544] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17315.157432] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17321.585644] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17328.133744] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17334.798804] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17341.574798] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17348.362772] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17355.300704] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17362.369205] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17369.570479] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17376.771543] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17384.103403] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17391.566190] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17399.159635] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17406.886625] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17414.608006] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17422.463434] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17430.458320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17438.608507] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17446.722601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17454.943027] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17463.324112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17471.830409] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17480.346130] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17488.986200] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17497.757227] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17506.661743] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17515.698090] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17524.735769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17533.903083] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17543.198112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17552.625849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17562.056419] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17571.614554] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17581.305631] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17591.125471] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17600.945649] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17610.900401] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17620.982711] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17631.199608] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17641.556009] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17651.914064] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17662.405814] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17673.018232] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17683.758612] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17694.511759] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17705.393707] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17716.408089] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17727.592467] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17738.722200] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17750.000243] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17761.383854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17772.908153] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17784.553616] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17796.211685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17807.999375] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17819.911736] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17831.963582] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17844.010968] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17856.191737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17868.495319] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17880.925481] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17893.491341] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17906.074313] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17918.779781] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17931.615907] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17944.453713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17957.408381] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17970.610864] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17983.738379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[17997.089622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18010.449645] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18024.072590] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18037.652548] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18051.580812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18065.455273] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18079.342357] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18093.360709] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18107.258996] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18121.392111] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18135.792419] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18150.202120] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18164.741184] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18179.280767] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18194.069611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18208.879267] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18223.813148] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18238.745641] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18253.942727] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18269.139574] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18284.466375] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18299.925650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18315.384463] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18331.105364] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18346.825461] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18362.677112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18378.530083] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18394.633304] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18410.746675] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18426.992272] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18443.368952] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18459.747234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18476.253260] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18492.881566] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18509.641231] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18526.540974] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18543.441664] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18560.472980] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18577.635024] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18594.927722] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18612.222060] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18629.647007] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18647.203864] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18664.890328] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18682.577967] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18700.396939] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18718.337076] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18736.416903] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18754.617778] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18772.828720] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18791.172607] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18809.636771] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18828.241951] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18846.847289] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18865.582992] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18884.438819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18903.426514] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18922.552924] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18941.685032] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18960.945463] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18980.335618] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[18999.727052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19019.251322] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19039.023474] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19058.679027] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19078.584033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19098.500099] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19118.676156] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19138.855191] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19159.034139] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19179.463777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19199.900865] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19220.475097] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19241.176306] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19261.879122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19282.833609] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19303.797887] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19324.893579] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19345.991838] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19367.340253] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19388.698709] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19410.189133] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19431.680921] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19453.432287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19475.183619] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19497.067191] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19519.081794] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19541.095784] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19563.371120] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19585.648880] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19608.055797] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19630.463826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19653.122303] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19675.794948] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19698.594511] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19721.523685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19744.454274] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19767.517274] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19790.698568] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19814.013478] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19837.469755] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19860.925727] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19884.512636] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19908.229002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19932.075290] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19955.925338] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[19979.904817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20004.015630] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20028.256571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20052.497904] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20076.871330] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20101.364005] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20125.999187] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20150.754528] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20175.520579] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20200.415975] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20225.433953] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20250.593378] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20275.738116] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20301.044885] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20326.454565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20351.998020] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20377.680108] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20403.366283] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20429.182499] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20431.278182] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20433.331530] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20435.370723] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20437.411830] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20439.461341] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20441.513825] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20443.549804] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20445.623211] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20447.660217] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20449.689560] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20451.774274] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20453.792951] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20455.841193] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20457.903677] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20459.933413] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20461.970916] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20464.023155] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20466.050279] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20468.120103] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20470.152699] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20472.178967] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20474.239629] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20476.276874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20478.329617] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20480.368638] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20482.408333] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20484.439135] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20486.496222] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20488.520926] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20490.584268] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20492.633584] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20494.647618] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74903): memory map update
[20496.696603] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20498.736624] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20500.769387] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20502.823242] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20504.857626] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20506.885725] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20508.942578] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20510.965123] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20513.022986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20515.058923] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20517.083875] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20519.145288] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20521.174023] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20523.214823] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20525.256320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74914): memory map update
[20527.297100] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20529.312436] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74914): memory map update
[20531.367541] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20533.389556] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74916): memory map update
[20535.442297] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20537.474165] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20539.499812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20541.541986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20543.582473] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20545.604100] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20547.662405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20549.689680] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20551.709362] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20553.762641] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20555.780692] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20557.824977] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20559.858546] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20561.885180] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20563.921080] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20565.960797] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20567.978406] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20570.032893] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20572.060088] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74903): memory map update
[20574.078189] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20576.131336] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20578.151016] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20580.188489] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20582.227964] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20584.247018] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20586.276601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20588.318232] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20590.332078] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20592.385039] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20594.407812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20596.438589] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74905): memory map update
[20598.472627] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20600.496716] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20602.531254] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20604.564132] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20606.589402] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20608.614589] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20610.656405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20612.667840] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20614.717207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74902): memory map update
[20616.740219] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20618.774002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20620.801966] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20622.824417] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20624.852686] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20626.887355] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74908): memory map update
[20628.923755] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20630.932641] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20632.971458] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20634.980567] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20637.023990] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20639.046080] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20641.062477] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74908): memory map update
[20643.098794] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74908): memory map update
[20645.126790] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74908): memory map update
[20647.144949] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20649.181646] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20651.199320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20653.224912] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20655.265480] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74909): memory map update
[20657.272308] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20659.312821] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74909): memory map update
[20661.335738] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74911): memory map update
[20663.347894] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74909): memory map update
[20665.382904] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20667.409471] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20669.423112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20671.459176] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20673.474804] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20675.490042] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20677.529145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74910): memory map update
[20679.535746] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20681.570090] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20683.591540] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20685.604152] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20687.633136] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20689.660123] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20691.662704] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20693.707783] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20695.721214] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20697.733760] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20699.769910] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20701.784049] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20703.829038] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20705.854485] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20707.866598] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20709.890165] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20711.917879] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20713.922052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20715.951694] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20717.972482] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20719.983399] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20722.016114] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20724.026536] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20726.047682] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20728.067473] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20730.083847] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20732.102888] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20734.132517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20736.134103] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20738.167473] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20740.175794] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20742.193718] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20744.219317] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20746.233468] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20748.248369] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20750.274817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20752.285929] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20754.293996] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20756.329568] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20758.330408] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20760.360583] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20762.378094] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20764.381622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20766.410269] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74909): memory map update
[20768.427203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20770.432737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20772.457562] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20774.476859] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20776.483011] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20778.513164] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74913): memory map update
[20780.506604] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20782.538921] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74913): memory map update
[20784.557002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20786.560346] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20788.573210] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20790.602069] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20792.601649] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74902): memory map update
[20794.623323] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20796.630398] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20798.648234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20800.672659] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74902): memory map update
[20802.670985] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20804.693356] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74902): memory map update
[20806.713320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20808.717387] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20810.729300] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20812.757961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20814.750741] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20816.781862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20818.790522] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20820.795748] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20822.817554] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74906): memory map update
[20824.828266] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20826.826378] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20828.855828] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20830.862352] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20832.873503] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20834.898361] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20836.890082] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20838.916547] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20840.926824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20842.929736] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20844.951184] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20846.964672] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20848.965051] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20850.988747] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20852.991345] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20855.001555] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20857.026238] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20859.021236] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20861.034614] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20863.052046] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20865.054073] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20867.073737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20869.088287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20871.082892] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20873.107320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20875.110002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20877.117802] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74895): memory map update
[20879.140237] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20881.137276] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20883.151144] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20885.164702] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20887.166236] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20889.180601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20891.196537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20893.188868] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20895.211049] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20897.216172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20899.217249] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20901.240459] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20903.241351] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20905.245573] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20907.263333] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74897): memory map update
[20909.261320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20911.271754] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20913.289164] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20915.280598] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74899): memory map update
[20917.301055] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20919.307856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20921.297813] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74904): memory map update
[20923.314481] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20925.331587] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20927.321376] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20929.347288] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20931.346363] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20933.354102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74907): memory map update
[20935.371299] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20937.359006] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20939.373003] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74901): memory map update
[20941.379115] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74898): memory map update
[20943.384651] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74894): memory map update
[20945.401908] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74900): memory map update
[20947.410745] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74893): memory map update
[20953.798184] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20954.155360] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74896): memory map update
[20958.134439] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 74887): suspending device
[20958.166195] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20958.279992] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20958.288720] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 74887): performing device reset
[20958.413897] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 74887): memory map update
[20958.542834] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 80512): performing device reset
[20968.927161] No such timeout policy "ovs_test_tp"
[20968.931813] Failed to associated timeout policy `ovs_test_tp'
[20972.711632] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 81102): performing device reset
[20972.721717] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 81102): performing device reset
[20980.554883] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81108): memory map update
[20992.818408] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 81108): suspending device
[20992.829052] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 81108): performing device reset
[20993.052136] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81108): memory map update
[20995.748266] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81113): memory map update
[20996.094506] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81113): memory map update
[21115.330190] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 81102): suspending device
[21115.358712] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81102): memory map update
[21115.472556] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81102): memory map update
[21115.481317] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 81102): performing device reset
[21115.605405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 81102): memory map update
[21115.760789] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 81450): performing device reset
[21122.703677] No such timeout policy "ovs_test_tp"
[21122.708319] Failed to associated timeout policy `ovs_test_tp'
[21126.492416] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82046): performing device reset
[21126.502495] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82046): performing device reset
[21134.162686] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82052): memory map update
[21218.465089] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82046): suspending device
[21218.475755] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82046): performing device reset
[21218.697682] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82046): memory map update
[21218.731350] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82046): performing device reset
[21223.528206] No such timeout policy "ovs_test_tp"
[21223.532852] Failed to associated timeout policy `ovs_test_tp'
[21227.313976] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21227.324093] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21235.400447] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21247.571423] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21247.581796] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21247.805062] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21251.222141] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82823): memory map update
[21251.579475] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82823): memory map update
[21270.730280] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21271.085911] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21271.115971] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21271.229759] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21271.238490] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21271.361725] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21288.549489] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21288.559852] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21288.781487] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21291.576448] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82822): memory map update
[21291.925180] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82822): memory map update
[21311.332391] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21311.680210] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21311.709769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21311.824443] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21311.833168] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21311.956281] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21328.431445] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21328.441911] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21328.662347] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21331.378942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82836): memory map update
[21331.732909] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82836): memory map update
[21351.539582] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21351.894803] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21351.927698] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21352.042510] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21352.051238] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21352.173534] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21368.490701] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21368.501274] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21368.722309] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21371.432370] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82837): memory map update
[21371.779241] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82837): memory map update
[21391.364289] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21391.715614] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21391.744134] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21391.858601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21391.867332] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21391.990454] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21408.953799] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21408.964372] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21409.186259] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21411.917951] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82825): memory map update
[21412.267597] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82825): memory map update
[21431.360014] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21431.709753] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21431.738317] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21431.853247] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21431.861970] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21431.984132] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21448.336301] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21448.346861] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21448.568211] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21451.240821] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82832): memory map update
[21451.588935] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82832): memory map update
[21471.307181] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21471.660061] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21471.688910] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21471.802988] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21471.811709] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21471.933918] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21488.270394] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21488.280889] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21488.502849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21491.239035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82826): memory map update
[21491.593325] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82826): memory map update
[21511.269163] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21511.620313] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82814): suspending device
[21511.648602] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21511.760830] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21511.769562] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82814): performing device reset
[21511.891477] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82814): memory map update
[21528.164602] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82820): suspending device
[21528.175022] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82820): performing device reset
[21528.396468] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82820): memory map update
[21530.977178] vringh:
[21530.977181] Guest says index 16 > 16 is available
[21540.977331] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82825): memory map update
[21541.217166] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82825): memory map update
[21541.447906] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82825): performing device reset
[21541.682304] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 82825): memory map update
[21541.691981] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 82825): suspending device
[21966.474818] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 82845): performing device reset
[21981.088554] No such timeout policy "ovs_test_tp"
[21981.093199] Failed to associated timeout policy `ovs_test_tp'
[21984.952004] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87086): performing device reset
[21984.962123] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87086): performing device reset
[21993.024126] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87092): memory map update
[22005.228753] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87092): suspending device
[22005.239158] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87092): performing device reset
[22005.461769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87092): memory map update
[22008.954040] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22009.307872] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22078.814612] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87102): suspending device
[22078.852858] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87102): memory map update
[22078.962929] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87102): memory map update
[22078.971684] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87102): performing device reset
[22079.095924] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87102): memory map update
[22081.931555] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87100): suspending device
[22081.963930] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87100): memory map update
[22082.078513] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87100): memory map update
[22082.087236] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87100): performing device reset
[22082.210791] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87100): memory map update
[22086.770587] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87101): suspending device
[22086.801723] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87101): memory map update
[22086.914081] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87101): memory map update
[22086.922805] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87101): performing device reset
[22087.046201] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87101): memory map update
[22093.593573] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87095): suspending device
[22093.622661] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22093.736322] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22093.745056] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87095): performing device reset
[22093.870122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22102.417597] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87093): suspending device
[22102.448636] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[22102.560037] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[22102.568807] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87093): performing device reset
[22102.691417] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[22109.250553] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87112): suspending device
[22109.279785] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22109.391601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22109.400327] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87112): performing device reset
[22109.523073] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22114.108651] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87098): suspending device
[22114.139350] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22114.252068] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22114.260827] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87098): performing device reset
[22114.383961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22117.844860] vringh:
[22117.844866] Guest says index 16 > 16 is available
[22127.845048] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22128.085056] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22128.317160] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22128.555185] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22128.565033] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22134.236338] vringh:
[22134.236342] Guest says index 16 > 16 is available
[22144.236519] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22144.347819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22144.356595] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87094): performing device reset
[22144.487452] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22144.496778] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87094): suspending device
[22149.059727] vringh:
[22149.059731] Guest says index 16 > 16 is available
[22159.059892] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22159.171907] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22159.180689] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87097): performing device reset
[22159.310480] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22159.320175] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87097): suspending device
[22162.895932] vringh:
[22162.895936] Guest says index 16 > 16 is available
[22172.896062] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22173.008456] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22173.017202] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87094): performing device reset
[22173.150921] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22173.160393] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87094): suspending device
[22178.722393] vringh:
[22178.722397] Guest says index 16 > 16 is available
[22188.722516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22188.835090] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22188.843822] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87094): performing device reset
[22188.971921] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22188.981349] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87094): suspending device
[22197.557458] vringh:
[22197.557462] Guest says index 16 > 16 is available
[22207.557619] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[22207.669103] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[22207.677862] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87108): performing device reset
[22207.806666] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[22207.816430] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87108): suspending device
[22215.385468] vringh:
[22215.385473] Guest says index 16 > 16 is available
[22225.385617] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22225.498129] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22225.506875] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87113): performing device reset
[22225.641809] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22225.651325] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87113): suspending device
[22233.222638] vringh:
[22233.222643] Guest says index 16 > 16 is available
[22243.222766] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22243.334192] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22243.342927] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87114): performing device reset
[22243.489163] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22243.498781] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87114): suspending device
[22251.068245] vringh:
[22251.068249] Guest says index 16 > 16 is available
[22261.068392] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[22261.179974] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[22261.188727] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87109): performing device reset
[22261.320056] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[22261.329585] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87109): suspending device
[22268.890880] vringh:
[22268.890884] Guest says index 16 > 16 is available
[22278.891034] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87111): memory map update
[22279.002908] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87111): memory map update
[22279.011664] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87111): performing device reset
[22279.151782] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87111): memory map update
[22279.161271] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87111): suspending device
[22286.761467] vringh:
[22286.761472] Guest says index 16 > 16 is available
[22296.761594] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22296.873994] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22296.882729] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22297.012487] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22297.021932] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22303.587342] vringh:
[22303.587346] Guest says index 16 > 16 is available
[22313.587493] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22313.699728] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22313.708473] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22313.838279] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22313.847967] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22320.412626] vringh:
[22320.412630] Guest says index 16 > 16 is available
[22330.412770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22330.524212] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22330.532963] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22330.664383] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22330.673851] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22336.249618] vringh:
[22336.249622] Guest says index 16 > 16 is available
[22346.249807] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22346.361208] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22346.369964] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22346.502555] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22346.512135] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22353.090227] vringh:
[22353.090231] Guest says index 16 > 16 is available
[22363.090370] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22363.202723] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22363.211468] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87098): performing device reset
[22363.341480] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22363.350964] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87098): suspending device
[22369.867656] vringh:
[22369.867660] Guest says index 16 > 16 is available
[22379.867793] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22379.980436] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22379.989174] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87113): performing device reset
[22380.118596] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22380.128268] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87113): suspending device
[22386.630235] vringh:
[22386.630239] Guest says index 16 > 16 is available
[22396.630358] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[22396.740511] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[22396.749247] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87109): performing device reset
[22396.876623] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[22396.886016] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87109): suspending device
[22403.386223] vringh:
[22403.386227] Guest says index 16 > 16 is available
[22413.386355] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87106): memory map update
[22413.497084] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87106): memory map update
[22413.505820] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87106): performing device reset
[22413.632331] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87106): memory map update
[22413.641944] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87106): suspending device
[22421.158045] vringh:
[22421.158049] Guest says index 16 > 16 is available
[22431.158173] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22431.268704] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22431.277435] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87114): performing device reset
[22431.403544] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22431.413157] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87114): suspending device
[22440.933136] vringh:
[22440.933140] Guest says index 16 > 16 is available
[22450.933259] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[22451.043417] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[22451.052148] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87093): performing device reset
[22451.177638] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[22451.187222] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87093): suspending device
[22457.677794] vringh:
[22457.677798] Guest says index 16 > 16 is available
[22467.677913] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22467.787593] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22467.796326] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87098): performing device reset
[22467.921390] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87098): memory map update
[22467.930789] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87098): suspending device
[22471.433173] vringh:
[22471.433176] Guest says index 16 > 16 is available
[22481.433308] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87115): memory map update
[22481.542925] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87115): memory map update
[22481.551667] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87115): performing device reset
[22481.679147] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87115): memory map update
[22481.688811] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87115): suspending device
[22484.189278] vringh:
[22484.189281] Guest says index 16 > 16 is available
[22494.189404] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22494.298620] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22494.307366] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87112): performing device reset
[22494.437928] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22494.447558] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87112): suspending device
[22498.945685] vringh:
[22498.945689] Guest says index 16 > 16 is available
[22508.945838] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87104): memory map update
[22509.055966] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87104): memory map update
[22509.064705] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87104): performing device reset
[22509.191023] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87104): memory map update
[22509.200695] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87104): suspending device
[22513.691110] vringh:
[22513.691114] Guest says index 16 > 16 is available
[22523.691244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87105): memory map update
[22523.801414] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87105): memory map update
[22523.810159] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87105): performing device reset
[22523.935088] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87105): memory map update
[22523.944794] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87105): suspending device
[22529.440046] vringh:
[22529.440050] Guest says index 16 > 16 is available
[22539.440202] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87104): memory map update
[22539.550232] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87104): memory map update
[22539.558966] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87104): performing device reset
[22539.686351] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87104): memory map update
[22539.695767] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87104): suspending device
[22549.222037] vringh:
[22549.222040] Guest says index 16 > 16 is available
[22559.222160] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22559.331873] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22559.340608] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87103): performing device reset
[22559.465378] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22559.474994] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87103): suspending device
[22565.986924] vringh:
[22565.986927] Guest says index 16 > 16 is available
[22575.987048] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87101): memory map update
[22576.097512] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87101): memory map update
[22576.106255] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87101): performing device reset
[22576.232648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87101): memory map update
[22576.242283] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87101): suspending device
[22582.652066] vringh:
[22582.652069] Guest says index 16 > 16 is available
[22592.652205] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22592.762765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22592.771498] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22592.897322] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22592.906739] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22599.402017] vringh:
[22599.402020] Guest says index 16 > 16 is available
[22609.402145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22609.511726] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22609.520470] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87094): performing device reset
[22609.646045] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87094): memory map update
[22609.655466] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87094): suspending device
[22614.150972] vringh:
[22614.150974] Guest says index 16 > 16 is available
[22624.151104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22624.261230] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22624.269961] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87103): performing device reset
[22624.399732] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22624.409326] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87103): suspending device
[22632.931818] vringh:
[22632.931821] Guest says index 16 > 16 is available
[22642.931960] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22643.041384] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22643.050132] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87095): performing device reset
[22643.192628] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22643.202181] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87095): suspending device
[22650.706987] vringh:
[22650.706990] Guest says index 16 > 16 is available
[22660.707116] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22660.816847] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22660.825604] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87097): performing device reset
[22660.967209] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22660.976938] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87097): suspending device
[22668.481276] vringh:
[22668.481280] Guest says index 16 > 16 is available
[22678.481407] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22678.590866] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22678.599604] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87097): performing device reset
[22678.729185] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22678.738587] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87097): suspending device
[22688.250659] vringh:
[22688.250663] Guest says index 16 > 16 is available
[22698.250787] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22698.360782] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22698.369526] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87095): performing device reset
[22698.496232] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87095): memory map update
[22698.505667] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87095): suspending device
[22708.007438] vringh:
[22708.007442] Guest says index 16 > 16 is available
[22718.007563] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22718.118628] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22718.127384] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87097): performing device reset
[22718.258412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22718.268066] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87097): suspending device
[22724.768249] vringh:
[22724.768252] Guest says index 16 > 16 is available
[22734.768373] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22734.879100] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22734.887854] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22735.017992] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22735.027526] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22739.534429] vringh:
[22739.534433] Guest says index 16 > 16 is available
[22749.534564] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22749.643651] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22749.652388] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87097): performing device reset
[22749.783931] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22749.793329] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87097): suspending device
[22758.201000] vringh:
[22758.201004] Guest says index 16 > 16 is available
[22768.201130] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22768.311233] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22768.319972] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22768.445707] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22768.455160] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22777.962008] vringh:
[22777.962011] Guest says index 16 > 16 is available
[22787.962140] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22788.071993] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22788.080737] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87097): performing device reset
[22788.220651] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87097): memory map update
[22788.230179] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87097): suspending device
[22793.752789] vringh:
[22793.752792] Guest says index 16 > 16 is available
[22803.752947] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22803.862637] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22803.871395] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87103): performing device reset
[22803.996516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87103): memory map update
[22804.006171] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87103): suspending device
[22810.507881] vringh:
[22810.507884] Guest says index 16 > 16 is available
[22820.508003] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22820.617740] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22820.626478] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87113): performing device reset
[22820.752242] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22820.761671] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87113): suspending device
[22831.272313] vringh:
[22831.272316] Guest says index 16 > 16 is available
[22841.272443] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22841.380413] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22841.389153] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[22841.515031] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[22841.524526] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[22852.031996] vringh:
[22852.031999] Guest says index 16 > 16 is available
[22862.032119] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87099): memory map update
[22862.142015] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87099): memory map update
[22862.150759] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87099): performing device reset
[22862.275837] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87099): memory map update
[22862.285468] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87099): suspending device
[22872.800773] vringh:
[22872.800777] Guest says index 16 > 16 is available
[22882.800900] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87099): memory map update
[22882.910629] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87099): memory map update
[22882.919368] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87099): performing device reset
[22883.043942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87099): memory map update
[22883.053380] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87099): suspending device
[22890.546060] vringh:
[22890.546067] Guest says index 16 > 16 is available
[22900.546188] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22900.655030] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22900.663771] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87114): performing device reset
[22900.789045] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87114): memory map update
[22900.798482] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87114): suspending device
[22905.300012] vringh:
[22905.300016] Guest says index 16 > 16 is available
[22915.300143] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87111): memory map update
[22915.409006] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87111): memory map update
[22915.417749] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87111): performing device reset
[22915.545896] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87111): memory map update
[22915.555325] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87111): suspending device
[22922.049657] vringh:
[22922.049661] Guest says index 16 > 16 is available
[22932.049799] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[22932.159679] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[22932.168424] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87108): performing device reset
[22932.295196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[22932.304882] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87108): suspending device
[22940.796568] vringh:
[22940.796572] Guest says index 16 > 16 is available
[22950.796725] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22950.906236] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22950.914982] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87113): performing device reset
[22951.039472] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87113): memory map update
[22951.049015] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87113): suspending device
[22956.553132] vringh:
[22956.553136] Guest says index 16 > 16 is available
[22966.553262] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22966.663474] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22966.672213] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87112): performing device reset
[22966.799066] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22966.808686] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87112): suspending device
[22969.303105] vringh:
[22969.303108] Guest says index 16 > 16 is available
[22979.303229] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22979.414773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22979.423503] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87112): performing device reset
[22979.549106] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87112): memory map update
[22979.558711] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87112): suspending device
[22983.058523] vringh:
[22983.058526] Guest says index 16 > 16 is available
[22993.058660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87107): memory map update
[22993.168874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87107): memory map update
[22993.177616] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87107): performing device reset
[22993.303743] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87107): memory map update
[22993.313320] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87107): suspending device
[22996.812898] vringh:
[22996.812901] Guest says index 16 > 16 is available
[23006.813024] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87115): memory map update
[23006.922137] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87115): memory map update
[23006.930882] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87115): performing device reset
[23007.056480] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87115): memory map update
[23007.065924] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87115): suspending device
[23009.566774] vringh:
[23009.566778] Guest says index 16 > 16 is available
[23019.566898] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[23019.676415] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[23019.685170] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87108): performing device reset
[23019.811174] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87108): memory map update
[23019.820694] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87108): suspending device
[23025.321864] vringh:
[23025.321868] Guest says index 16 > 16 is available
[23035.322053] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[23035.432425] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[23035.441193] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87109): performing device reset
[23035.566991] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87109): memory map update
[23035.576632] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87109): suspending device
[23044.083436] vringh:
[23044.083440] Guest says index 16 > 16 is available
[23054.083559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[23054.193644] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[23054.202389] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87096): performing device reset
[23054.333357] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87096): memory map update
[23054.342789] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87096): suspending device
[23061.852372] vringh:
[23061.852376] Guest says index 16 > 16 is available
[23071.852518] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[23071.962654] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[23071.971403] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87093): performing device reset
[23072.102124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 87093): memory map update
[23072.111561] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 87093): suspending device
[23217.366015] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 87086): performing device reset
[23225.400544] No such timeout policy "ovs_test_tp"
[23225.405205] Failed to associated timeout policy `ovs_test_tp'
[23229.276562] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 89948): performing device reset
[23229.286640] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 89948): performing device reset
[23236.089568] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 90191): performing device reset
[23236.099682] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 90191): performing device reset
[23237.185883] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89954): memory map update
[23244.042289] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90197): memory map update
[23249.508992] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 89954): suspending device
[23249.520126] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 89954): performing device reset
[23249.753463] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89954): memory map update
[23253.162600] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89961): memory map update
[23253.532640] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89961): memory map update
[23256.676548] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 90197): suspending device
[23256.687602] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 90197): performing device reset
[23256.907833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90197): memory map update
[23259.999924] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90211): memory map update
[23260.280360] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90211): memory map update
[23589.621291] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89957): memory map update
[23589.990322] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89957): memory map update
[23649.597618] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 89948): suspending device
[23649.629367] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89948): memory map update
[23649.743807] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89948): memory map update
[23649.752537] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 89948): performing device reset
[23649.875673] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 89948): memory map update
[23650.012464] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 89975): performing device reset
[23650.393730] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 90191): suspending device
[23650.425010] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90191): memory map update
[23650.527126] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90191): memory map update
[23650.535859] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 90191): performing device reset
[23650.656122] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 90191): memory map update
[23650.812333] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 90191): performing device reset
[23661.798613] No such timeout policy "ovs_test_tp"
[23661.803270] Failed to associated timeout policy `ovs_test_tp'
[23665.665827] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 92255): performing device reset
[23665.675925] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 92255): performing device reset
[23672.462812] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 92498): performing device reset
[23672.472882] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 92498): performing device reset
[23673.639832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92261): memory map update
[23680.419525] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92504): memory map update
[23686.174176] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 92261): suspending device
[23686.185322] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 92261): performing device reset
[23686.418899] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92261): memory map update
[23689.168938] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92274): memory map update
[23689.545019] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92274): memory map update
[23692.970445] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 92504): suspending device
[23692.981453] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 92504): performing device reset
[23693.205462] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92504): memory map update
[23697.569493] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92518): memory map update
[23697.904712] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92518): memory map update
[25009.438465] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92273): memory map update
[25011.738447] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92273): memory map update
[25069.415611] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 92255): suspending device
[25069.444559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92255): memory map update
[25069.559503] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92255): memory map update
[25069.568236] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 92255): performing device reset
[25069.691344] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 92255): memory map update
[25069.838853] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 92282): performing device reset
[25070.327010] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 92498): suspending device
[25070.353123] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92498): memory map update
[25070.454973] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92498): memory map update
[25070.463719] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 92498): performing device reset
[25070.586009] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 92498): memory map update
[25070.729540] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 92527): performing device reset
[25082.536954] No such timeout policy "ovs_test_tp"
[25082.541617] Failed to associated timeout policy `ovs_test_tp'
[25086.338303] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 97244): performing device reset
[25086.348413] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 97244): performing device reset
[25094.115497] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97250): memory map update
[25142.071107] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 97250): suspending device
[25142.081957] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 97250): performing device reset
[25142.305967] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97250): memory map update
[25146.493938] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97260): memory map update
[25146.853827] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97260): memory map update
[25306.043117] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 97244): suspending device
[25306.071069] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97244): memory map update
[25306.183663] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97244): memory map update
[25306.192394] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 97244): performing device reset
[25306.316285] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 97244): memory map update
[25306.447492] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 97266): performing device reset
[25313.648517] No such timeout policy "ovs_test_tp"
[25313.653174] Failed to associated timeout policy `ovs_test_tp'
[25317.427584] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 98379): performing device reset
[25317.437691] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 98379): performing device reset
[25325.393706] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98385): memory map update
[25337.596029] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 98385): suspending device
[25337.606763] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 98385): performing device reset
[25337.830458] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98385): memory map update
[25340.692146] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98391): memory map update
[25341.049042] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98391): memory map update
[26000.279559] perf: interrupt took too long (2503 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
[26055.572085] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98398): memory map update
[26055.934907] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98398): memory map update
[26115.552949] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 98379): suspending device
[26115.582585] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98379): memory map update
[26115.693542] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98379): memory map update
[26115.702271] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 98379): performing device reset
[26115.825064] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 98379): memory map update
[26115.953989] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 98379): performing device reset
[26123.838468] No such timeout policy "ovs_test_tp"
[26123.843112] Failed to associated timeout policy `ovs_test_tp'
[26127.616836] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 100529): performing device reset
[26127.627017] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 100529): performing device reset
[26135.716537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100535): memory map update
[26147.942451] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 100535): suspending device
[26147.953191] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 100535): performing device reset
[26148.177579] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100535): memory map update
[26151.094305] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100535): memory map update
[26151.458456] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100535): memory map update
[26168.170723] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 100529): suspending device
[26168.201515] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100529): memory map update
[26168.317239] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100529): memory map update
[26168.326081] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 100529): performing device reset
[26168.450591] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 100529): memory map update
[26168.597464] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 100707): performing device reset
[26420.578114] No such timeout policy "ovs_test_tp"
[26420.582764] Failed to associated timeout policy `ovs_test_tp'
[26424.411387] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 101601): performing device reset
[26424.421636] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 101601): performing device reset
[26424.716450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26425.533817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26425.568978] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26425.601386] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26425.675048] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26425.774871] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26427.905964] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26428.768187] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26428.865382] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26429.895446] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26429.926430] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26429.961002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26429.991452] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.027033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.058832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.136329] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.167784] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.234637] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.285712] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.596816] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.641857] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.684614] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.716345] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26430.961524] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26444.101796] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 101607): suspending device
[26444.111731] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 101607): performing device reset
[26444.332741] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101607): memory map update
[26446.988037] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101622): memory map update
[26447.276273] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101622): memory map update
[26506.037236] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 101601): suspending device
[26506.065014] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26506.178058] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26506.186872] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 101601): performing device reset
[26506.306752] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 101601): memory map update
[26506.432854] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 101731): performing device reset
[26512.104426] No such timeout policy "ovs_test_tp"
[26512.109070] Failed to associated timeout policy `ovs_test_tp'
[26515.892859] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 102395): performing device reset
[26515.903038] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 102395): performing device reset
[26516.199104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26517.045535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26517.078696] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26517.110875] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26517.183520] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26517.278505] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26519.254752] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26520.148988] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26520.245643] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.327934] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.359537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.394162] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.424861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.456834] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.488062] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.574067] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.605082] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.672911] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26521.724873] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26522.049976] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26522.095256] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26522.138450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26522.170215] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26522.455341] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26535.456420] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 102401): suspending device
[26535.467132] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 102401): performing device reset
[26535.686443] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102401): memory map update
[26538.296130] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102417): memory map update
[26538.579565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102417): memory map update
[26657.715679] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 102395): suspending device
[26657.743444] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26657.856522] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26657.865353] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 102395): performing device reset
[26657.984645] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 102395): memory map update
[26658.127016] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 102696): performing device reset
[26665.741796] No such timeout policy "ovs_test_tp"
[26665.746438] Failed to associated timeout policy `ovs_test_tp'
[26669.554691] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 103357): performing device reset
[26669.564877] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 103357): performing device reset
[26669.867655] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26670.687777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26670.722102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26670.754711] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26670.827874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26670.922928] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26673.046722] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26673.922186] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26674.020320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.073182] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.108224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.142986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.173843] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.209401] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.241595] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.319967] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.351580] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.418941] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.470574] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.806029] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.851812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.896694] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26675.929079] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26676.208293] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103363): memory map update
[26761.546226] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 103357): suspending device
[26761.556940] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 103357): performing device reset
[26761.777638] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 103357): memory map update
[26761.813239] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 103357): performing device reset
[26766.621861] No such timeout policy "ovs_test_tp"
[26766.626504] Failed to associated timeout policy `ovs_test_tp'
[26770.761254] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.771440] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.780550] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.790684] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.799795] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.818130] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.827238] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26770.837368] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26771.138051] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26771.164404] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26771.178304] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26771.190198] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.049217] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.078681] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.095475] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.110479] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.129719] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.162164] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.180049] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.196423] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.212878] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.241573] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.259301] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.275357] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.424176] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.455296] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.475351] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.493730] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.678191] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.708528] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.727540] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26772.744883] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26774.692829] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26774.723191] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26774.742127] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26774.759492] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.681466] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.715059] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.734069] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.751325] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.923084] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.953166] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.972097] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26775.989376] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.166451] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.196813] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.215987] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.233560] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.252877] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.282855] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.301813] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.319197] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.340791] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.370773] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.389763] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.407184] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.426089] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.455811] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.474645] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.491937] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.513570] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.543465] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.562424] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.579810] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.598775] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.628533] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.647370] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.664610] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.686174] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.716085] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.735061] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.752445] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.771377] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.801080] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.819946] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.837184] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.858811] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.888741] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.907711] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.925112] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.943307] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.975127] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26777.995619] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.013854] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.033611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.064665] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.084581] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.102669] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.121683] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.152311] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.171790] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.189393] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.280245] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.310535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.329690] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.347226] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.367753] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.397618] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.416538] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.433913] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.520803] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.550848] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.569907] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.587382] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.646194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.676142] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.695120] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26778.712466] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.046485] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.080038] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.099140] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.116652] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.150382] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.181458] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.201357] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.219351] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.249798] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.280836] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.300806] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.319070] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.339031] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.369709] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.389448] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.407531] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.691284] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.722648] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.742615] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26779.760880] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26795.428701] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26795.441795] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26795.684412] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26795.697394] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26795.708483] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26795.927930] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26795.939880] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26795.950849] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26796.166953] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26796.178589] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26796.188574] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26796.409719] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26801.131775] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26801.481827] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26801.797704] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26802.101227] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26802.409379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26802.758839] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26803.082690] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26803.387052] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[26823.523171] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26823.832345] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26824.119119] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26824.415237] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26824.720310] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26824.771244] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26824.914529] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26824.923358] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26825.041588] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.084213] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26825.127090] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.250824] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.259632] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26825.377513] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.422197] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26825.456785] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.563566] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.572375] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26825.690669] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.735147] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26825.767099] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.884453] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26825.893267] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26826.013354] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26845.189572] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26845.201335] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26845.443151] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26845.456420] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26845.467137] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26845.687222] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26845.699385] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26845.709900] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26845.925865] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26845.937535] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26845.947858] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26846.168080] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26849.505691] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26849.855127] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26850.172163] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26850.474816] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26850.783639] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26851.138056] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26851.453121] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26851.759370] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104152): memory map update
[26868.182479] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26868.487688] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26868.777374] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.070287] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.376937] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26869.427612] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.572453] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.581271] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26869.699340] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.742403] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26869.786283] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.905393] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26869.914247] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26870.032249] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26870.075409] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26870.111873] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26870.219037] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26870.227852] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26870.346048] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26870.388197] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26870.416981] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26870.533315] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26870.542129] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26870.662040] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26889.794047] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26889.806255] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26890.046933] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26890.059927] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26890.071865] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26890.291168] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26890.303045] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26890.313231] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26890.528654] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26890.540083] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26890.550359] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26890.769294] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26894.104937] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26894.456331] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26894.774997] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26895.090064] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26895.404450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26895.745484] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26896.063241] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26896.361826] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104166): memory map update
[26912.621925] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26912.928464] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26913.215929] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26913.512182] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26913.815850] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26913.867768] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.002537] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.011353] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26914.129726] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.172759] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26914.215766] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.336091] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.344910] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26914.462683] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.508883] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26914.543330] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.648255] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.657072] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26914.775044] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.819467] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26914.847657] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.962863] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26914.971685] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26915.091176] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26933.750196] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26933.762470] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26934.001724] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26934.014364] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26934.025642] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26934.244199] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26934.256257] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26934.267363] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26934.481900] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26934.493510] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26934.503566] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26934.722403] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26937.990730] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26938.346877] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26938.658631] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26938.965110] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26939.280624] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26939.631604] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26939.950099] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26940.255465] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104161): memory map update
[26956.847257] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26957.151335] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26957.436050] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26957.727997] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.033426] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26958.086612] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.226086] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.234917] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26958.352677] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.395935] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26958.439269] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.558569] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.567382] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26958.685123] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.727683] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26958.764173] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.868817] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26958.877632] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26958.995844] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26959.040609] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[26959.068671] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26959.183684] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26959.192493] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[26959.312369] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[26978.367963] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26978.381011] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26978.620359] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26978.633124] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26978.644513] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26978.863597] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26978.875570] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26978.886463] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26979.101480] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26979.113011] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[26979.122706] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[26979.343121] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[26982.752861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26983.112323] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26983.428750] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26983.732195] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26984.044053] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26984.391558] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26984.706717] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[26985.006664] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104174): memory map update
[27002.021172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27002.325326] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27002.616105] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27002.905295] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.210067] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27003.261686] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.401868] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.410685] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27003.528329] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.571098] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27003.615569] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.736585] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.745393] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27003.863180] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27003.906017] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27003.942822] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27004.048845] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27004.057661] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27004.176401] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27004.218909] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27004.247518] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27004.363726] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27004.372532] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27004.492681] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27023.129452] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27023.142229] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27023.384395] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27023.397161] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27023.408554] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27023.625367] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27023.637307] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27023.648207] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27023.862408] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27023.873909] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27023.883846] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27024.104319] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27027.591112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27027.942646] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27028.259399] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27028.564280] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27028.869969] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27029.219449] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27029.539613] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27029.842892] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104165): memory map update
[27051.351334] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27051.652993] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27051.945819] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27052.239938] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27052.549883] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27052.600208] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27052.736643] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27052.745454] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27052.864153] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27052.909057] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27052.951695] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.073579] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.082384] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27053.199997] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.241715] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27053.277230] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.381836] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.390647] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27053.508620] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.550647] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27053.577694] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.693346] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27053.702148] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27053.821810] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27072.819891] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27072.832652] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27073.077555] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27073.090359] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27073.102398] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27073.321745] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27073.333724] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27073.344772] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27073.559333] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27073.570778] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27073.581107] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27073.800195] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27077.105780] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27077.459406] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27077.772712] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27078.080313] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27078.390633] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27078.745441] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27079.068662] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27079.371143] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27100.829572] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27101.134175] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27101.422340] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27101.716591] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.021793] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27102.073651] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.211305] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.220335] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27102.338032] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.382663] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27102.427282] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.544486] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.553298] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27102.670926] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.714537] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27102.751489] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.853946] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27102.862757] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27102.980788] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27103.024720] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104145): suspending device
[27103.052735] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27103.167420] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27103.176225] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27103.295580] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104145): memory map update
[27122.467510] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27122.478895] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27122.720340] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27122.733045] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27122.744422] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27122.963916] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27122.975785] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27122.986042] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27123.201684] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27123.213341] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104151): suspending device
[27123.223832] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104151): performing device reset
[27123.444747] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104151): memory map update
[27126.331698] vringh:
[27126.331702] Guest says index 16 > 16 is available
[27136.331849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104168): memory map update
[27136.573716] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104168): memory map update
[27136.808449] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104168): performing device reset
[27137.033936] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 104168): memory map update
[27137.043608] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 104168): suspending device
[27137.348812] vringh:
[27137.348815] Guest says index 16 > 16 is available
[27147.348988] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104169): memory map update
[27147.570978] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104169): memory map update
[27147.785358] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104169): performing device reset
[27147.998320] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 104169): memory map update
[27148.008175] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 104169): suspending device
[27148.211119] vringh:
[27148.211122] Guest says index 16 > 16 is available
[27158.211234] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27158.432237] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27158.650982] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104155): performing device reset
[27158.863797] mlx5_core 0000:0d:00.4: mlx5_vdpa_handle_set_map:613:(pid 104155): memory map update
[27158.873626] mlx5_core 0000:0d:00.4: mlx5_vdpa_suspend:3159:(pid 104155): suspending device
[27159.063710] vringh:
[27159.063712] Guest says index 16 > 16 is available
[27169.063865] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[27169.292318] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[27169.505572] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104163): performing device reset
[27169.716022] mlx5_core 0000:0d:00.5: mlx5_vdpa_handle_set_map:613:(pid 104163): memory map update
[27169.725841] mlx5_core 0000:0d:00.5: mlx5_vdpa_suspend:3159:(pid 104163): suspending device
[27668.197884] mlx5_core 0000:0d:00.5: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27668.206782] mlx5_core 0000:0d:00.4: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27668.215663] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27668.224568] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 104145): performing device reset
[27683.062052] No such timeout policy "ovs_test_tp"
[27683.066696] Failed to associated timeout policy `ovs_test_tp'
[27686.863048] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 109659): performing device reset
[27686.873235] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 109659): performing device reset
[27687.197074] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27688.244542] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27688.283401] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27688.316970] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27688.390235] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27688.491517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27690.583565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27691.530307] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27691.632670] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.706264] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.738763] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.772553] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.803293] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.840216] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.872628] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.966771] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27692.998636] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.077826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.139218] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.533761] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.580722] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.625680] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.658890] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27693.925734] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27707.420123] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 109665): suspending device
[27707.430797] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 109665): performing device reset
[27707.652870] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27710.501708] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109683): memory map update
[27710.788853] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109683): memory map update
[27729.072758] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27729.444608] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27731.440958] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27731.812559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27733.807883] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27734.170443] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27736.173994] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27736.528467] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27738.537483] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27738.893765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27740.903778] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27741.258315] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27743.268376] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27743.629509] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27745.635610] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27745.990476] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27747.999573] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27748.359616] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27750.364966] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27750.721623] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27752.732971] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27753.087831] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[27755.098622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27755.454344] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27757.466320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27757.820609] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27759.832647] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27760.188573] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27762.201134] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27762.558192] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[27764.566292] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27764.922597] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27766.933998] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27767.289402] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27769.299196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27769.656463] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109683): memory map update
[27771.666813] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27772.023509] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[27774.032374] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27774.385698] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27776.396945] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27776.753910] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109683): memory map update
[27778.763729] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27779.117717] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27781.127896] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27781.487729] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109682): memory map update
[27783.498424] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27783.854375] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27785.863925] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27786.221361] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[27788.231958] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27788.591780] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109682): memory map update
[27790.600762] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27790.958162] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109679): memory map update
[27792.966750] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27793.323898] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109685): memory map update
[27795.332899] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27795.684713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109679): memory map update
[27797.695948] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27798.051038] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27800.061629] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27800.419682] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109679): memory map update
[27802.426586] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27802.784969] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27804.792962] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27805.150461] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27807.160685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27807.519097] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27809.527494] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27809.883722] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27811.893473] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27812.247771] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27814.259611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27814.614718] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27816.625884] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27816.988826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27818.998674] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27819.355085] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27821.365890] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27821.722231] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27823.733836] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27824.090873] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27826.100905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27826.454692] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27828.466414] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27828.820716] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27830.831711] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27831.185832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27833.197536] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27833.554553] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27835.565648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27835.922421] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27837.932398] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27838.285831] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27840.296737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27840.652839] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[27842.664078] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27843.018133] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27845.028867] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27845.382810] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27847.394707] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27847.750712] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27849.762515] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27850.115826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[27852.126748] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27852.487876] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[27854.497425] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27854.850596] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27856.862559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27857.221194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27859.233290] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27859.589852] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27861.600610] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27861.954789] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27863.966047] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27864.322592] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27866.334628] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27866.690085] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27868.699029] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27869.055024] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27871.064966] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27871.420312] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27873.431778] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27873.793147] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27875.797856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27876.154335] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27878.164857] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27878.518175] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[27880.528788] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27880.885646] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27882.896877] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27883.251207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[27885.261220] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27885.615573] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[27887.627696] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27887.987700] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27889.998294] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27890.352969] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109688): memory map update
[27892.363112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27892.720732] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27894.732033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27895.087976] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109687): memory map update
[27897.098017] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27897.454037] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27899.464038] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27899.821196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27901.831817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27902.185938] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27904.197932] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27904.557070] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27906.566443] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27906.923118] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27908.933503] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27909.289942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27911.300798] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27911.657755] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27913.667053] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27914.023030] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27916.033821] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27916.391770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27918.401622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27918.755331] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27920.766224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27921.123101] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27923.133972] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27923.494335] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[27925.505670] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27925.862254] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27927.873210] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27928.233699] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27930.243194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27930.598741] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[27932.609934] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27932.969702] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[27934.978407] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27935.334788] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27937.345365] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27937.704723] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27939.712587] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27940.070380] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27942.080738] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27942.436859] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27944.447814] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27944.806101] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27946.819873] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27947.179234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27949.186806] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27949.544126] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27951.554319] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27951.915075] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27953.922974] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27954.277905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27956.288557] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27956.650074] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27958.658518] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27959.019166] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[27961.031052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27961.387971] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[27963.399457] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27963.758781] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27965.770024] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27966.134255] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27968.138773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27968.502741] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27970.512975] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27970.869350] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27972.880575] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27973.239271] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[27975.250204] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27975.612122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[27977.623121] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27977.977223] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27979.987947] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27980.344334] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27982.354140] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27982.709666] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27984.719942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27985.080690] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[27987.093475] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27987.449906] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27989.460510] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27989.821872] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[27991.828531] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27992.187637] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27994.199161] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27994.558365] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[27996.568294] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27996.925671] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[27998.936037] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[27999.300141] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28001.306462] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28001.667855] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28003.675725] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28004.034773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109684): memory map update
[28006.045883] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28006.405349] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28008.411527] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28008.769490] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28010.779881] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28011.136826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28013.146673] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28013.503752] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28015.513412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28015.870845] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28017.880939] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28018.236765] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28020.247690] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28020.610922] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28022.617606] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28022.974565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28024.983247] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28025.340144] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28027.350190] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28027.708372] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28029.720834] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28030.083812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28032.093560] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28032.451746] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28034.464761] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28034.824072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28036.834422] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28037.194729] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28039.206441] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28039.566561] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28041.579477] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28041.937475] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28043.948492] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28044.309279] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28046.318809] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28046.676193] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28048.686824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28049.044144] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28051.054961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28051.416521] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28053.426728] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28053.783418] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28055.794167] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28056.151694] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109685): memory map update
[28058.162612] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28058.522731] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28060.531283] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28060.891703] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28062.898956] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28063.257748] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28065.268060] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28065.627616] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28067.638703] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28067.999012] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28070.009601] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28070.368427] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28072.379433] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28072.742250] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28074.747760] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28075.111852] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28077.121791] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28077.482337] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28079.491483] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28079.851516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28081.862960] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28082.222036] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28084.231774] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28084.592622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28086.603468] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28086.963803] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28088.972494] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28089.334651] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28091.344819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28091.705709] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28093.715874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28094.073593] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28096.084754] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28096.447318] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28098.454800] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28098.813669] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28100.824698] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28101.188781] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28103.198560] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28103.558612] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28105.569181] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28105.931535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28107.937394] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28108.297379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28110.308284] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28110.666189] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28112.677571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28113.038707] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28115.047660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28115.408731] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28117.419750] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28117.776875] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28119.789021] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28120.150621] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28122.161632] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28122.521395] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28124.529179] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28124.888713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28126.900093] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28127.263283] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28129.269941] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28129.629854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28131.640360] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28132.000575] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28134.010965] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28134.369546] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28136.378626] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28136.743215] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[28138.753171] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28139.112371] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28141.120517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28141.478657] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28143.489828] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28143.851015] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28145.860298] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28146.218558] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28148.229308] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28148.592148] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28150.601699] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28150.961200] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109676): memory map update
[28152.970846] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28153.331185] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28155.341847] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28155.702951] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28157.713862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28158.072138] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28160.081874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28160.442543] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109680): memory map update
[28162.453155] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28162.811517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[28164.821683] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28165.185291] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109665): memory map update
[28167.193356] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28167.553616] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28169.563685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28169.921821] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28171.932308] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28172.296412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28174.306536] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28174.672038] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28176.676583] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28177.035247] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28179.046478] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28179.406886] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28181.417751] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28181.775599] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28183.786647] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28184.146991] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109681): memory map update
[28186.157650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28186.519719] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28188.527540] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28188.886945] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28190.898524] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28191.262811] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28193.270711] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28193.631256] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28195.640836] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28196.009698] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[28198.017335] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28198.378361] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28200.385784] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28200.747797] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28202.758566] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28203.121559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28205.130906] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28205.490272] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28207.500432] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28207.865084] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28209.875862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28210.235827] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28212.246346] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28212.609014] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28214.620232] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28214.979370] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28216.991196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28217.351886] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28219.362629] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28219.722182] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28221.734925] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28222.098233] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28224.105289] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28224.465764] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28226.476559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28226.836614] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28228.847468] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28229.208535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28231.218608] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28231.580052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28233.589970] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28233.953278] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28235.962398] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28236.328104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28238.338474] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28238.698690] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28240.706013] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28241.066766] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28243.078148] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28243.443385] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28245.452977] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28245.813896] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28247.822829] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28248.183762] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28250.194285] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28250.555412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28252.565817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28252.932124] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28254.938330] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28255.300958] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109675): memory map update
[28257.308212] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28257.668582] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28259.680539] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28260.046309] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28262.053841] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28262.413272] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28264.423128] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28264.788956] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28266.798678] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28267.163913] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28269.172655] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28269.530687] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28271.542483] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28271.904014] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28273.915006] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28274.278744] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28276.286628] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28276.653412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28278.662503] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28279.029235] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109673): memory map update
[28281.039501] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28281.401145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28283.411622] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28283.779525] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28285.784666] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28286.147139] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109666): memory map update
[28288.157499] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28288.521853] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28290.529743] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28290.895262] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28292.906116] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28293.274940] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28295.281797] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28295.644108] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28297.654098] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28298.016248] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28300.025283] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28300.387938] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28302.398503] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28302.760553] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28304.771648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28305.134212] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28307.143905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28307.508472] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28309.515490] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28309.876310] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109667): memory map update
[28311.887572] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28312.245662] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28314.257638] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28314.619195] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28316.630101] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28316.991731] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28319.001238] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28319.359779] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28321.371201] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28321.727807] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109668): memory map update
[28323.738685] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28324.093799] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109670): memory map update
[28326.105560] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28326.461545] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109669): memory map update
[28328.472366] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28328.831986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109674): memory map update
[28330.842743] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28331.204369] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109671): memory map update
[28333.211664] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28333.567865] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109672): memory map update
[28338.499287] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109678): memory map update
[28338.787110] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109678): memory map update
[28398.487763] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 109659): suspending device
[28398.524363] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28398.639805] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28398.648615] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 109659): performing device reset
[28398.769353] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 109659): memory map update
[28398.900803] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 110718): performing device reset
[28407.630551] No such timeout policy "ovs_test_tp"
[28407.635193] Failed to associated timeout policy `ovs_test_tp'
[28411.428837] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 111361): performing device reset
[28411.439050] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 111361): performing device reset
[28411.733719] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28412.618363] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28412.656085] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28412.691320] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28412.766786] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28412.873752] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28414.809536] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28415.743823] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28415.847913] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28416.892841] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28416.927590] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28416.964691] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28416.998049] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.035005] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.069676] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.149915] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.184302] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.254466] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.315165] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.627009] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.674697] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.720893] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28417.755885] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28418.000487] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28430.947798] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 111367): suspending device
[28430.958016] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 111367): performing device reset
[28431.184039] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[28433.960149] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111383): memory map update
[28434.254411] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111383): memory map update
[28452.790022] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28453.156552] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28453.530212] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28453.900970] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28454.273373] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28454.653412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28455.033155] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28455.407126] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28455.808337] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28456.847777] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28457.875696] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28459.176959] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28460.467679] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28461.899061] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28463.337954] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28465.026818] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28466.709829] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28468.534636] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28470.359943] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28472.448016] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28474.524416] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28476.743639] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28479.093492] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28481.441895] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28484.053122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28486.664691] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28489.407898] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28492.150393] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28495.145806] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28498.150155] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28501.285650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28504.552396] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28507.820361] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28511.218849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28514.737924] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28518.387826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28522.179400] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28525.971591] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28529.892712] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28533.947828] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28538.130259] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28542.315412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28546.631355] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28551.078268] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28555.656802] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28560.232052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28564.938112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28569.777972] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28574.749429] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28579.851415] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28584.953693] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28590.186916] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28595.554202] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28601.048462] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28606.542660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28612.171132] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28617.928834] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28623.814653] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28629.703719] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28635.723382] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28641.874488] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28648.156540] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28654.569407] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28660.983327] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28667.528485] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28674.203176] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28681.009208] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28687.817574] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28694.753057] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28701.821587] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28709.020567] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28716.220736] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28723.550888] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28731.014024] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28738.606403] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28746.328905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28754.052513] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28761.907688] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28769.894861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28778.010942] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28786.129379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28794.377362] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28802.756713] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28811.267924] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28819.777366] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28828.417854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28837.189249] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28846.092635] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28855.127072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28864.161770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28873.327724] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28882.624513] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28892.051379] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28901.480447] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28911.039077] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28920.729120] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28930.550231] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28940.371598] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28950.323858] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28960.407293] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28970.621757] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28980.966843] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[28991.312737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29001.789285] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29012.397134] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29023.135234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29033.875206] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29044.745011] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29055.745809] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29066.877641] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29078.010611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29089.273585] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29100.657254] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29112.182280] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29123.829736] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29135.485235] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29147.272596] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29159.181030] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29171.231131] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29183.280983] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29195.462840] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29207.764058] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29220.197003] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29232.770176] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29245.345378] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29258.050075] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29270.885303] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29283.722531] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29296.691348] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29309.911543] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29323.010709] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29336.361244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29349.720384] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29363.340799] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29376.963129] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29390.586679] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29404.461424] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29418.345890] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29432.361695] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29446.508691] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29460.655373] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29475.054344] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29489.464221] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29504.003100] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29518.584962] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29533.392548] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29548.207273] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29563.140528] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29578.073847] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29593.269266] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29608.465280] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29623.791751] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29639.248564] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29654.706630] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29670.426479] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29686.146162] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29701.995132] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29717.847595] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29733.949943] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29750.063571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29766.308899] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29782.682375] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29799.058667] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29815.565880] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29832.193568] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29848.952150] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29865.851286] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29882.751801] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29899.780627] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29916.943088] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29934.234633] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29951.529547] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29968.952849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[29986.507905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30004.193573] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30021.878983] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30039.696364] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30057.634876] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30075.713422] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30093.913875] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30112.123731] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30130.464944] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30148.926851] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30167.531485] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30186.133824] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30204.868960] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30223.724801] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30242.711888] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30261.838552] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30280.968310] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30300.227544] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30319.616492] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30339.008956] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30358.529528] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30378.301901] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30397.955961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30417.860160] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30437.772250] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30457.946760] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30478.123006] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30498.301042] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30518.729006] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30539.168254] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30559.737318] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30580.438227] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30601.139586] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30622.092336] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30643.056986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30664.150021] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30685.247563] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30706.594661] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30727.950551] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30749.438890] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30770.926291] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30792.675551] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30814.426097] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30836.307064] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30858.316916] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30880.328873] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30902.602495] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30924.876544] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30947.281773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30969.686218] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[30992.343385] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31015.009854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31037.807917] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31060.736277] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31083.666524] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31106.726775] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31129.904905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31153.217479] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31176.674138] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31200.122157] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31223.707416] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31247.422791] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31271.271648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31295.116452] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31319.093857] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31343.203648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31367.446828] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31391.683511] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31416.054981] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31440.547294] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31465.180576] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31489.936000] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31514.699818] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31539.596079] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31564.612538] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31589.772342] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31614.927496] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31640.215116] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31665.625416] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31691.165251] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31716.817202] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31742.528597] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31768.344609] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[31770.357057] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111379): memory map update
[31772.410810] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31774.453041] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31776.514102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[31778.538860] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[31780.596582] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31782.631508] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31784.707946] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31786.745241] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31788.777207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31790.835668] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31792.876931] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31794.925122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31796.979342] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31799.031102] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31801.049394] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31803.116289] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31805.142621] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[31807.206506] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31809.248033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31811.288282] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31813.323535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[31815.375327] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31817.407234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111384): memory map update
[31819.476319] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31821.514116] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31823.535542] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31825.591738] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31827.629632] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31829.674169] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111381): memory map update
[31831.745489] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111382): memory map update
[31833.767806] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[31835.787991] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[31837.848035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31839.885073] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31841.935550] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[31843.969172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31845.999049] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[31848.039856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31850.082617] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31852.115965] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[31854.172985] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[31856.210042] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111382): memory map update
[31858.230542] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31860.302393] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31862.317226] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31864.364860] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31866.403222] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31868.440507] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[31870.466091] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31872.518748] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31874.544301] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31876.603004] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31878.634894] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31880.655101] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[31882.698207] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31884.734565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31886.771339] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[31888.812644] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31890.850512] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[31892.865726] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31894.920397] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31896.941355] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31898.991530] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31901.022884] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31903.051196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31905.080144] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[31907.124087] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31909.148881] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[31911.202675] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[31913.231716] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31915.247730] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[31917.293559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31919.321835] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31921.360096] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31923.401150] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31925.429399] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31927.445949] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[31929.496927] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31931.516842] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31933.584706] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[31935.594837] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31937.613917] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31939.648112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31941.683136] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31943.708972] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31945.756145] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[31947.780659] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31949.804856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31951.841072] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31953.860020] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[31955.900707] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[31957.927726] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31959.955043] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31961.975659] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[31964.016866] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31966.034150] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31968.081557] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31970.106288] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[31972.116892] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31974.153104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[31976.179377] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31978.224264] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111384): memory map update
[31980.244096] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31982.271818] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31984.285985] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111381): memory map update
[31986.329230] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31988.346100] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111379): memory map update
[31990.389993] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[31992.427405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111380): memory map update
[31994.433804] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31996.457206] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[31998.506328] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32000.510525] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32002.547564] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32004.581497] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32006.579568] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32008.613033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32010.633866] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[32012.662409] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32014.702498] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32016.706523] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32018.718457] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32020.755826] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32022.764668] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32024.806385] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32026.822854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32028.832974] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[32030.860986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[32032.888498] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32034.903612] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32036.936450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32038.952932] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32040.961267] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32042.996171] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32045.034631] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32047.067428] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32049.086269] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[32051.112461] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32053.120120] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32055.150470] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32057.161005] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111370): memory map update
[32059.195701] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32061.214960] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32063.224648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32065.256286] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32067.277002] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32069.301832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32071.329625] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32073.344840] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32075.353490] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32077.380563] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32079.397384] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32081.433353] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32083.448395] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32085.460929] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32087.472576] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32089.506917] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32091.514046] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[32093.552829] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[32095.565224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[32097.575883] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32099.589033] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32101.620202] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32103.626551] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32105.664016] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32107.667385] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32109.683371] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32111.698141] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32113.724495] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32115.730327] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32117.765908] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32119.772865] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32121.780604] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32123.794413] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32125.820237] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32127.826878] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32129.859788] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32131.866183] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32133.872018] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32135.887678] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32137.906544] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32139.917021] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[32141.948051] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32143.949261] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32145.949171] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32147.976632] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32149.995841] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32152.004745] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32154.030863] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32156.035241] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32158.039684] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32160.060412] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32162.073279] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32164.079336] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111369): memory map update
[32166.109728] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32168.108036] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32170.116456] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32172.136913] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32174.147851] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32176.157760] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32178.184621] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111373): memory map update
[32180.182122] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32182.180819] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32184.214388] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32186.214523] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32188.225541] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32190.255639] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32192.260887] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111381): memory map update
[32194.260384] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111381): memory map update
[32196.280114] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111380): memory map update
[32198.292980] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[32200.304147] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32202.319924] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32204.319576] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32206.331872] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32208.350528] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32210.341369] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32212.367861] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32214.369775] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32216.380133] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32218.394953] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32220.400771] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32222.401426] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32224.436921] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[32226.426131] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111371): memory map update
[32228.436674] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32230.460110] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32232.461230] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32234.475193] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32236.486125] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32238.485289] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32240.492849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32242.511784] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111367): memory map update
[32244.511347] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111387): memory map update
[32246.536554] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32248.534256] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[32250.534091] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32252.551377] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[32254.561297] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32256.562817] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[32258.584205] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111377): memory map update
[32260.578960] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111368): memory map update
[32262.581617] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111378): memory map update
[32264.604104] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32266.604878] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32268.615123] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32270.624317] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32272.622845] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32274.630537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32276.642737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32278.636076] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111372): memory map update
[32280.659565] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111375): memory map update
[32282.655597] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32284.659321] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111376): memory map update
[32286.672963] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111374): memory map update
[32293.024800] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111383): memory map update
[32293.348860] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111383): memory map update
[32297.247335] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 111361): suspending device
[32297.276328] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[32297.404203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[32297.413029] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 111361): performing device reset
[32297.535524] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 111361): memory map update
[32297.685276] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 116889): performing device reset
[32309.414568] No such timeout policy "ovs_test_tp"
[32309.419221] Failed to associated timeout policy `ovs_test_tp'
[32313.258134] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 117547): performing device reset
[32313.268341] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 117547): performing device reset
[32313.638754] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32314.624007] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32314.671224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32314.711571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32314.795470] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32314.904321] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32316.807087] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32317.810197] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32317.919749] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32318.985543] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.028848] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.073231] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.114862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.164003] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.207885] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.305635] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.349036] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.429517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.495711] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.818098] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.874879] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.928979] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32319.972019] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32320.266755] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32333.416909] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 117553): suspending device
[32333.427374] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 117553): performing device reset
[32333.662294] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117553): memory map update
[32336.452895] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117558): memory map update
[32336.776654] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117558): memory map update
[32531.567000] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 117547): suspending device
[32531.596545] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32531.720564] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32531.729429] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 117547): performing device reset
[32531.850211] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 117547): memory map update
[32531.983620] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 120788): performing device reset
[32538.609357] No such timeout policy "ovs_test_tp"
[32538.614002] Failed to associated timeout policy `ovs_test_tp'
[32542.470282] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 121427): performing device reset
[32542.480467] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 121427): performing device reset
[32542.780025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32543.642273] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32543.697918] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32543.741184] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32543.825517] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32543.936246] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32545.821374] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32546.861844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32546.970745] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.022271] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.074707] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.123527] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.166638] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.212057] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.255748] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.345675] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.389276] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.468095] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.531272] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.868736] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.926561] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32548.981776] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32549.025382] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32549.308269] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32562.402369] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 121433): suspending device
[32562.412741] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 121433): performing device reset
[32562.648837] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121433): memory map update
[32565.357611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121454): memory map update
[32565.682732] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121454): memory map update
[32757.792060] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 121427): suspending device
[32757.819535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32757.942575] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32757.951426] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 121427): performing device reset
[32758.072870] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 121427): memory map update
[32758.209027] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 121427): performing device reset
[32764.667676] No such timeout policy "ovs_test_tp"
[32764.672341] Failed to associated timeout policy `ovs_test_tp'
[32768.512473] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 125343): performing device reset
[32768.522663] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 125343): performing device reset
[32768.816912] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[32769.685986] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[32769.736593] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[32769.777597] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[32769.861694] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[32769.972827] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[32772.028012] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32772.935129] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32773.044907] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.095863] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.139357] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.184631] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.226897] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.276566] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.321082] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.412472] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.455764] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.534965] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.598363] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.942217] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32774.999239] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32775.053808] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32775.097431] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32775.364905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32775.388535] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 125586): performing device reset
[32775.413453] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 125586): performing device reset
[32775.724902] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[32776.554365] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[32776.576506] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[32776.594961] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[32776.657809] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[32776.743707] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[32778.761052] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32779.641299] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32779.727936] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.762383] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.783569] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.806894] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.827408] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.849637] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.870666] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.935060] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32780.956162] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.013265] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.054362] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.377730] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.412418] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.444761] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.466465] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32781.734058] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32788.542179] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 125349): suspending device
[32788.553169] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 125349): performing device reset
[32788.800035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125349): memory map update
[32791.427096] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125364): memory map update
[32791.758021] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125364): memory map update
[32795.154692] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 125592): suspending device
[32795.165852] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 125592): performing device reset
[32795.384237] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32798.029371] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[32798.288772] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125592): memory map update
[33062.357412] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 125343): suspending device
[33062.384514] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[33062.510084] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[33062.518900] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 125343): performing device reset
[33062.639972] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 125343): memory map update
[33062.777167] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 125343): performing device reset
[33124.611855] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 125586): suspending device
[33124.639308] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[33124.743094] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[33124.751902] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 125586): performing device reset
[33124.869951] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 125586): memory map update
[33125.002261] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 125613): performing device reset
[33135.995956] No such timeout policy "ovs_test_tp"
[33136.000605] Failed to associated timeout policy `ovs_test_tp'
[33139.856474] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 127351): performing device reset
[33139.866720] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 127351): performing device reset
[33140.164030] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33140.993780] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33141.042862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33141.083032] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33141.167724] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33141.272461] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33143.194058] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33144.118476] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33144.229439] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.393339] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.436977] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.481987] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.523844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.569464] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.612536] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.702955] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.745513] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.823907] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33145.886043] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33146.208773] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33146.265121] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33146.318580] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33146.361458] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33146.612757] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33146.692817] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 127594): performing device reset
[33146.702902] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 127594): performing device reset
[33147.023825] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33147.862042] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33147.884146] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33147.902042] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33147.964954] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33148.053303] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33150.092742] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33150.935234] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33151.021304] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.068952] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.091016] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.114378] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.134631] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.156901] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.177767] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.244450] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.265833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.325584] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.369884] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.697600] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.731895] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.764868] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33152.786361] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33153.051391] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33160.053065] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 127357): suspending device
[33160.063987] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 127357): performing device reset
[33160.309983] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127357): memory map update
[33163.076560] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127366): memory map update
[33163.412121] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127366): memory map update
[33166.452615] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 127600): suspending device
[33166.463656] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 127600): performing device reset
[33166.685503] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127600): memory map update
[33169.461750] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127611): memory map update
[33169.723464] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127611): memory map update
[33431.552877] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 127351): suspending device
[33431.583340] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33431.708904] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33431.717747] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 127351): performing device reset
[33431.838307] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 127351): memory map update
[33431.967624] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 127380): performing device reset
[33493.819506] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 127594): suspending device
[33493.850293] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33493.953229] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33493.962045] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 127594): performing device reset
[33494.080302] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 127594): memory map update
[33494.207769] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 128735): performing device reset
[33504.584441] No such timeout policy "ovs_test_tp"
[33504.589105] Failed to associated timeout policy `ovs_test_tp'
[33508.465317] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 129391): performing device reset
[33508.475516] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 129391): performing device reset
[33508.766399] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33509.604989] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33509.655896] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33509.696547] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33509.781196] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33509.887016] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33511.804678] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33512.817030] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33512.938537] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.186832] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.230478] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.275312] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.317252] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.366322] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.410474] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.504356] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.547564] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.628120] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33514.694896] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33515.020811] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33515.081906] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33515.137571] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33515.181405] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33515.294292] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 129633): performing device reset
[33515.304681] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 129633): performing device reset
[33515.477376] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33515.670267] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33516.489188] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33516.512894] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33516.531664] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33516.595910] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33516.683853] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33518.808085] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33519.752707] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33519.841158] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33520.881294] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33520.902930] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33520.926645] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33520.947534] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33520.970124] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33520.991483] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.054981] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.076503] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.133019] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.174554] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.493855] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.529183] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.561535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.583643] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33521.818459] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33528.901000] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 129397): suspending device
[33528.912834] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 129397): performing device reset
[33529.159414] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129397): memory map update
[33531.907234] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129400): memory map update
[33532.240770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129400): memory map update
[33534.915072] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 129639): suspending device
[33534.926170] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 129639): performing device reset
[33535.147018] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129639): memory map update
[33539.092731] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129646): memory map update
[33539.364129] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129646): memory map update
[33801.041673] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 129391): suspending device
[33801.072665] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33801.198670] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33801.207481] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 129391): performing device reset
[33801.328439] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 129391): memory map update
[33801.473033] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 130598): performing device reset
[33863.301322] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 129633): suspending device
[33863.329923] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33863.430565] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33863.439384] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 129633): performing device reset
[33863.558052] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 129633): memory map update
[33863.708452] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 129633): performing device reset
[33874.270452] No such timeout policy "ovs_test_tp"
[33874.275097] Failed to associated timeout policy `ovs_test_tp'
[33878.152243] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 131432): performing device reset
[33878.162490] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 131432): performing device reset
[33878.467711] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[33879.309497] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[33879.360141] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[33879.401576] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[33879.486050] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[33879.596446] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[33881.639291] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33882.615021] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33882.726146] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33883.810268] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33883.856193] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33883.901542] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33883.943905] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33883.991968] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.036177] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.130673] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.174188] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.255653] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.322618] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.655466] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.713676] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.768131] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33884.811767] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33885.038285] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 131674): performing device reset
[33885.048562] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 131674): performing device reset
[33885.110253] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33885.469040] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[33886.516360] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[33886.539141] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[33886.557636] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[33886.621303] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[33886.709587] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[33888.619071] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33889.529570] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33889.616717] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.747171] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.768723] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.792617] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.812935] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.835292] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.856372] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.922756] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33890.944723] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.012064] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.057048] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.417500] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.456110] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.490122] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.512075] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33891.779912] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33898.664592] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 131438): suspending device
[33898.676301] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 131438): performing device reset
[33898.922820] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131438): memory map update
[33901.694083] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131442): memory map update
[33902.027535] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131442): memory map update
[33905.413837] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 131680): suspending device
[33905.425031] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 131680): performing device reset
[33905.645878] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131680): memory map update
[33908.360191] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131694): memory map update
[33908.623863] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131694): memory map update
[34171.500191] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 131432): suspending device
[34171.527398] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[34171.653848] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[34171.662678] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 131432): performing device reset
[34171.783516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 131432): memory map update
[34171.920617] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 131499): performing device reset
[34233.759750] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 131674): suspending device
[34233.793169] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[34233.893444] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[34233.902258] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 131674): performing device reset
[34234.021121] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 131674): memory map update
[34234.159598] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 132835): performing device reset
[34244.557777] No such timeout policy "ovs_test_tp"
[34244.562428] Failed to associated timeout policy `ovs_test_tp'
[34248.427146] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 133496): performing device reset
[34248.437354] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 133496): performing device reset
[34248.730948] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34249.570025] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34249.618676] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34249.658961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34249.743049] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34249.849248] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34251.775757] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34252.654951] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34252.763667] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34253.817856] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34253.861229] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34253.906339] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34253.948176] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34253.995946] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.039862] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.133172] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.177146] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.258585] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.324623] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.654758] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.712185] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.766336] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34254.809627] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34255.095581] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34255.228103] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 133740): performing device reset
[34255.238354] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 133740): performing device reset
[34255.549755] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34256.370998] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34256.393735] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34256.412852] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34256.476188] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34256.564136] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34258.672968] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34259.589294] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34259.677126] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.707825] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.729725] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.753815] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.774947] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.797850] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.819519] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.897029] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.918355] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34260.982312] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34261.025395] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34261.327545] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34261.362791] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34261.395647] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34261.417825] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34261.660378] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34268.361385] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 133502): suspending device
[34268.372232] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 133502): performing device reset
[34268.616825] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133502): memory map update
[34271.274863] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133523): memory map update
[34271.614844] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133523): memory map update
[34274.996439] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 133746): suspending device
[34275.007365] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 133746): performing device reset
[34275.224924] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133746): memory map update
[34278.019321] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133756): memory map update
[34278.282746] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133756): memory map update
[34541.551875] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 133496): suspending device
[34541.583329] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34541.710263] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34541.719106] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 133496): performing device reset
[34541.839804] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 133496): memory map update
[34541.962499] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 133523): performing device reset
[34603.790609] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 133740): suspending device
[34603.817577] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34603.918734] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34603.927548] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 133740): performing device reset
[34604.046754] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 133740): memory map update
[34604.181361] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 133768): performing device reset
[34614.346730] No such timeout policy "ovs_test_tp"
[34614.351367] Failed to associated timeout policy `ovs_test_tp'
[34618.214040] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 135530): performing device reset
[34618.224222] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 135530): performing device reset
[34618.520966] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34619.350194] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34619.400013] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34619.442169] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34619.526811] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34619.635164] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34621.567161] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34622.617978] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34622.729534] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34623.800305] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34623.844871] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34623.890456] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34623.932874] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34623.984373] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.028979] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.121284] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.164789] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.243915] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.307411] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.649334] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.706541] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.761697] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34624.805615] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34625.058002] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 135772): performing device reset
[34625.068286] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 135772): performing device reset
[34625.101516] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34625.364782] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34626.229816] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34626.253492] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34626.273280] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34626.339048] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34626.424228] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34628.447725] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34629.459378] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34629.548255] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.592454] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.614913] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.639767] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.660935] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.684317] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.706290] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.773876] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.796961] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.857578] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34630.903666] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34631.231570] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34631.268585] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34631.302851] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34631.325456] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34631.599269] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34638.656637] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 135536): suspending device
[34638.667991] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 135536): performing device reset
[34638.913611] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135536): memory map update
[34641.626224] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135556): memory map update
[34641.964955] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135556): memory map update
[34644.945240] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 135778): suspending device
[34644.956474] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 135778): performing device reset
[34645.175924] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135778): memory map update
[34647.909816] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135789): memory map update
[34648.171607] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135789): memory map update
[34910.354345] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 135530): suspending device
[34910.384835] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34910.512351] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34910.521160] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 135530): performing device reset
[34910.642770] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 135530): memory map update
[34910.791632] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 136743): performing device reset
[34972.612458] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 135772): suspending device
[34972.639432] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34972.741492] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34972.750301] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 135772): performing device reset
[34972.868805] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 135772): memory map update
[34973.019455] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 136913): performing device reset
[34983.660135] No such timeout policy "ovs_test_tp"
[34983.664790] Failed to associated timeout policy `ovs_test_tp'
[34987.531023] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 137573): performing device reset
[34987.541274] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 137573): performing device reset
[34987.849021] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[34988.688960] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[34988.738865] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[34988.779604] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[34988.863914] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[34988.978422] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[34991.031854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34992.003079] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34992.119524] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.161429] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.206052] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.251747] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.294112] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.342530] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.386660] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.477364] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.520945] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.600032] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34993.663258] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34994.002717] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34994.059210] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34994.113387] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34994.156878] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34994.416002] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 137815): performing device reset
[34994.422111] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[34994.426279] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 137815): performing device reset
[34994.730224] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[34995.593088] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[34995.617633] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[34995.637373] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[34995.701592] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[34995.848452] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[34997.812816] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[34998.853461] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[34998.942530] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[34999.992330] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.015108] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.040299] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.061673] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.085375] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.107517] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.174897] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.198237] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.258900] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.304949] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.632965] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.668602] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.703417] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35000.726293] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35001.001973] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35007.937308] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 137579): suspending device
[35007.948801] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 137579): performing device reset
[35008.194559] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137579): memory map update
[35010.915150] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137582): memory map update
[35011.246700] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137582): memory map update
[35014.221703] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 137821): suspending device
[35014.231956] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 137821): performing device reset
[35014.452357] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137821): memory map update
[35017.125884] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137829): memory map update
[35017.392727] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137829): memory map update
[35278.945097] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 137573): suspending device
[35278.974686] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[35279.101493] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[35279.110318] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 137573): performing device reset
[35279.230961] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 137573): memory map update
[35279.353513] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 137601): performing device reset
[35341.213454] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 137815): suspending device
[35341.242891] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[35341.344875] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[35341.353696] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 137815): performing device reset
[35341.472611] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 137815): memory map update
[35341.612399] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 137882): performing device reset
[35351.696413] No such timeout policy "ovs_test_tp"
[35351.701054] Failed to associated timeout policy `ovs_test_tp'
[35355.550870] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 139595): performing device reset
[35355.561064] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 139595): performing device reset
[35355.855661] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[35356.679822] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[35356.728263] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[35356.769578] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[35356.854586] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[35356.972450] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[35358.892244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35359.754595] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35359.868308] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35360.959180] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.004035] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.050530] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.093990] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.145818] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.191239] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.285169] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.329087] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.410161] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.477062] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.801648] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.859655] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.914932] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35361.959203] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35362.237875] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35362.404846] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 139840): performing device reset
[35362.415277] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 139840): performing device reset
[35362.794770] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[35363.822157] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[35363.846987] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[35363.866714] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[35363.933687] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[35364.021827] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[35365.931393] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35366.841527] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35366.929233] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35367.962305] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35367.984887] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.009806] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.031263] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.054806] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.077075] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.141907] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.164482] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.225329] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.271579] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.605080] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.641036] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.675415] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.698181] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35368.977851] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35375.624060] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 139601): suspending device
[35375.634760] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 139601): performing device reset
[35375.881882] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139601): memory map update
[35378.570479] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139624): memory map update
[35378.907433] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139624): memory map update
[35382.754286] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 139846): suspending device
[35382.765104] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 139846): performing device reset
[35382.987372] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139846): memory map update
[35387.302725] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139859): memory map update
[35387.564359] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139859): memory map update
[36001.354950] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139608): memory map update
[36001.683650] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139608): memory map update
[36010.400009] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 139595): suspending device
[36010.430679] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[36010.557202] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[36010.566040] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 139595): performing device reset
[36010.686854] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 139595): memory map update
[36010.832548] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 141786): performing device reset
[36013.084416] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139866): memory map update
[36013.339509] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139866): memory map update
[36065.953584] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 139840): suspending device
[36065.981888] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[36066.086149] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[36066.094973] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 139840): performing device reset
[36066.213359] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 139840): memory map update
[36066.346053] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 139861): performing device reset
[36122.955656] No such timeout policy "ovs_test_tp"
[36122.960320] Failed to associated timeout policy `ovs_test_tp'
[36128.415982] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36128.426263] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36128.733759] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36129.714717] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36129.765276] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36129.807068] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36129.892701] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36130.003422] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36131.899109] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36132.780395] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36132.890973] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36133.980105] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.024885] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.070481] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.112928] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.163451] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.208283] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.303612] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.347683] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.429094] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.495938] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.823097] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.881020] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.936244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36134.980509] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36135.270735] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36155.022308] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 142590): suspending device
[36155.032658] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 142590): performing device reset
[36155.269134] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36157.926143] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142613): memory map update
[36158.254761] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142613): memory map update
[36204.400523] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 142584): suspending device
[36204.432160] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36204.558784] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36204.567598] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36204.688674] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36204.734838] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36204.745297] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36204.796133] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142602): memory map update
[36204.804944] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142602): memory map update
[36204.813835] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142602): memory map update
[36204.822636] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142602): memory map update
[36520.644287] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142601): memory map update
[36565.619814] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142611): memory map update
[36610.620448] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142611): memory map update
[36655.610542] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142610): memory map update
[36700.612180] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142606): memory map update
[36707.514911] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36707.525690] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 142584): suspending device
[36707.540306] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36707.549155] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36724.883098] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 142590): suspending device
[36724.893489] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142590): performing device reset
[36725.102151] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142590): memory map update
[36727.752652] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142612): memory map update
[36728.008487] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142612): memory map update
[36787.626514] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 142584): suspending device
[36787.654222] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36787.758695] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36787.767509] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36787.886199] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36809.293125] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 142593): suspending device
[36809.335416] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142593): memory map update
[36809.446873] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142593): memory map update
[36809.455690] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142593): performing device reset
[36809.574433] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 142593): memory map update
[36810.284494] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36883.204372] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 142584): suspending device
[36883.235089] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36883.362995] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36883.371812] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36883.492898] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 142584): memory map update
[36883.619598] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 142584): performing device reset
[36905.231913] No such timeout policy "ovs_test_tp"
[36905.236557] Failed to associated timeout policy `ovs_test_tp'
[36911.061994] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[36911.072190] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[36911.367547] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36912.412251] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36912.460737] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36912.501794] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36912.586729] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36913.263244] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36915.164624] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36916.032129] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36916.146129] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.186849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.230892] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.277401] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.320437] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.371005] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.416350] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.508401] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.552849] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.631738] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36917.694769] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36918.019149] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36918.077307] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36918.134198] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36918.179302] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36918.453655] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36934.061384] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[36934.072073] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[36934.308429] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[36938.373673] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144423): memory map update
[36938.703121] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144423): memory map update
[36983.572045] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[36983.602812] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36983.729293] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36983.738103] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[36983.859163] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[36983.906197] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[36983.916586] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[36983.963575] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144412): memory map update
[36983.972386] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144412): memory map update
[36983.981265] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144412): memory map update
[36983.990073] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144412): memory map update
[37299.649105] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[37344.655917] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144414): memory map update
[37389.656621] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144426): memory map update
[37434.655939] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144416): memory map update
[37479.647855] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144414): memory map update
[37486.270712] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37486.281475] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[37486.301342] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[37486.310197] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37503.293014] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[37503.303567] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[37503.511273] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[37506.209430] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144419): memory map update
[37506.463720] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144419): memory map update
[37565.695626] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[37565.726077] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37565.828133] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37565.836951] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[37565.955450] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37587.353257] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144424): suspending device
[37587.389985] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144424): memory map update
[37587.500435] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144424): memory map update
[37587.509262] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144424): performing device reset
[37587.628107] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144424): memory map update
[37588.349039] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[37611.752818] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[37611.787603] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37611.915157] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37611.923971] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[37612.044730] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[37612.089454] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[37612.099321] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[37612.151319] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[37612.160137] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[37612.169015] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[37612.177820] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[37837.869948] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144432): memory map update
[37882.856880] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144429): memory map update
[37927.869133] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144418): memory map update
[37972.869880] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144419): memory map update
[38017.869973] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38062.977363] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144430): memory map update
[38107.869267] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144422): memory map update
[38115.897236] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38115.907801] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[38115.922638] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38115.931501] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38132.624618] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[38132.634691] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[38132.844276] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[38135.580909] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144422): memory map update
[38135.835049] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144422): memory map update
[38194.480542] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[38194.510741] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38194.612424] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38194.621270] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38194.739935] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38216.130596] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144411): suspending device
[38216.166817] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38216.277082] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38216.285905] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144411): performing device reset
[38216.405465] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38217.124926] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38240.522431] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[38240.551269] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38240.679192] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38240.688023] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38240.808644] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38240.853244] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38240.862798] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38240.911354] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38240.920163] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38240.929026] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38240.937833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144411): memory map update
[38466.268390] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144432): memory map update
[38511.257960] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144413): memory map update
[38556.377629] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144431): memory map update
[38601.267976] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144429): memory map update
[38646.367364] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144418): memory map update
[38691.271061] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144413): memory map update
[38736.268386] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144415): memory map update
[38744.140217] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38744.150696] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[38744.164488] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38744.173333] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38761.342078] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[38761.352446] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[38761.559433] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[38764.328227] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144413): memory map update
[38764.583035] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144413): memory map update
[38835.272239] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[38835.299007] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38835.401664] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38835.410472] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38835.529001] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38856.920124] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144433): suspending device
[38856.959633] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[38857.067535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[38857.076349] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144433): performing device reset
[38857.196122] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[38857.917098] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38881.321031] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[38881.357092] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38881.485476] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38881.494340] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38881.614891] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[38881.658561] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38881.668170] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[38881.719070] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[38881.727878] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[38881.736742] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[38881.745560] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[39107.023292] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144413): memory map update
[39151.999659] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144414): memory map update
[39197.011386] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144419): memory map update
[39242.010458] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[39287.002933] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144415): memory map update
[39332.012403] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[39377.014828] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[39383.936766] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39383.947256] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[39383.966227] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[39383.975078] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39400.509817] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[39400.520491] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[39400.728833] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[39403.420669] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[39403.675455] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[39474.114851] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[39474.146836] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39474.250975] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39474.259798] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[39474.378939] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39495.768267] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144431): suspending device
[39495.806599] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144431): memory map update
[39495.913617] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144431): memory map update
[39495.922421] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144431): performing device reset
[39496.041148] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144431): memory map update
[39496.765892] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[39520.176186] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[39520.211638] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39520.338162] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39520.346972] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[39520.467582] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[39520.513950] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[39520.523501] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[39520.574045] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[39520.582856] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[39520.591748] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[39520.600549] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[39746.099780] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144419): memory map update
[39791.082322] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144417): memory map update
[39836.091419] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144429): memory map update
[39881.092405] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[39926.093389] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144421): memory map update
[39971.091418] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144415): memory map update
[40016.092496] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144423): memory map update
[40022.186471] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40022.196993] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[40022.211560] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40022.220416] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40038.770076] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[40038.780256] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[40038.989146] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[40041.634815] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144417): memory map update
[40041.886107] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144417): memory map update
[40107.521581] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[40107.548693] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40107.650248] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40107.659052] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40107.777777] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40129.162773] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144425): suspending device
[40129.199160] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[40129.311282] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[40129.320100] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144425): performing device reset
[40129.438627] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144425): memory map update
[40130.160886] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40153.557020] mlx5_core 0000:0d:00.2: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[40153.586219] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40153.713504] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40153.722312] mlx5_core 0000:0d:00.2: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40153.843148] mlx5_core 0000:0d:00.2: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40153.887184] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40153.896739] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40153.947700] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[40153.956513] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[40153.965400] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[40153.974209] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144427): memory map update
[40379.397333] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144417): memory map update
[40424.371493] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[40469.382963] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144433): memory map update
[40514.385077] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144422): memory map update
[40559.380933] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144423): memory map update
[40604.382484] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144426): memory map update
[40649.383430] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144412): memory map update
[40656.643535] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40656.654038] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144404): suspending device
[40656.669958] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144404): performing device reset
[40656.678805] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144404): memory map update
[40673.316299] mlx5_core 0000:0d:00.3: mlx5_vdpa_suspend:3159:(pid 144410): suspending device
[40673.326604] mlx5_core 0000:0d:00.3: mlx5_vdpa_reset:2870:(pid 144410): performing device reset
[40673.535632] mlx5_core 0000:0d:00.3: mlx5_vdpa_handle_set_map:613:(pid 144410): memory map update
[40674.281717] general protection fault, probably for non-canonical address 0x59b4e6a4d6b0d68c: 0000 [#1] PREEMPT SMP NOPTI
[40674.292597] CPU: 42 PID: 144423 Comm: qemu-system-x86 Kdump: loaded Not tainted 6.6.12 #2
[40674.300785] Hardware name: Dell Inc. PowerEdge R760/0NH8MJ, BIOS 1.3.2 03/28/2023
[40674.308265] RIP: 0010:kmem_cache_alloc+0x10b/0x350
[40674.313083] Code: 48 83 78 10 00 48 8b 38 0f 84 d2 01 00 00 48 85 ff 0f 84 c9 01 00 00 41 8b 44 24 28 4d 8b 0c 24 49 8d 88 00 20 00 00 48 01 f8 <48> 8b 18 48 89 c2 49 33 9c 24 b8 00 00 00 48 89 f8 48 0f ca 48 31
[40674.331830] RSP: 0018:ff87beb5a7853d80 EFLAGS: 00010002
[40674.337054] RAX: 59b4e6a4d6b0d68c RBX: 0000000000000820 RCX: 000000002978602a
[40674.344189] RDX: 0000000000000058 RSI: 0000000000000f40 RDI: 59b4e6a4d6b0d664
[40674.351321] RBP: ff87beb5a7853dc8 R08: 000000002978402a R09: 0000000000038d30
[40674.358453] R10: 0000000000000000 R11: 0000000000000000 R12: ff44959f8003b600
[40674.365588] R13: ff44959820965bc0 R14: 0000000000000820 R15: ffffffff81d239b1
[40674.372719] FS:  00007f759d7fa640(0000) GS:ff44959f60140000(0000) knlGS:0000000000000000
[40674.380807] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[40674.386551] CR2: 0000000000000000 CR3: 0000000b61a40001 CR4: 0000000000773ee0
[40674.393684] PKRU: 55555554
[40674.396397] Call Trace:
[40674.398849]  <TASK>
[40674.400958]  ? die_addr+0x33/0x90
[40674.404294]  ? exc_general_protection+0x1d2/0x430
[40674.409017]  ? asm_exc_general_protection+0x22/0x30
[40674.413911]  ? __sigqueue_alloc+0x81/0x120
[40674.418031]  ? kmem_cache_alloc+0x10b/0x350
[40674.422233]  __sigqueue_alloc+0x81/0x120
[40674.426160]  __send_signal_locked+0x25c/0x3c0
[40674.430517]  ? send_signal_locked+0xc8/0x130
[40674.434791]  do_send_sig_info+0x59/0xc0
[40674.438631]  do_send_specific+0x80/0xb0
[40674.442469]  do_tkill+0x88/0xb0
[40674.445615]  __x64_sys_tgkill+0x25/0x40
[40674.449455]  do_syscall_64+0x59/0x90
[40674.453044]  ? do_syscall_64+0x69/0x90
[40674.456797]  ? sysvec_apic_timer_interrupt+0x3c/0x90
[40674.461770]  entry_SYSCALL_64_after_hwframe+0x6e/0xd8
[40674.466824] RIP: 0033:0x7f77cd6a3629
[40674.470446] Code: 00 5b 5d 41 5c 41 5d 41 5e c3 0f 1f 80 00 00 00 00 8b ab d0 02 00 00 e8 15 ae f9 ff 44 89 e2 89 c7 89 ee b8 ea 00 00 00 0f 05 <89> c5 31 d2 f7 dd 3d 00 f0 ff ff 0f 46 ea e9 7c ff ff ff 0f 1f 40
[40674.489192] RSP: 002b:00007f759d7f9320 EFLAGS: 00000246 ORIG_RAX: 00000000000000ea
[40674.496758] RAX: ffffffffffffffda RBX: 00007f77c5b3a640 RCX: 00007f77cd6a3629
[40674.503890] RDX: 000000000000000a RSI: 000000000002341c RDI: 0000000000023414
[40674.511024] RBP: 000000000002341c R08: 000055c700ee3624 R09: 00000000000000ff
[40674.518157] R10: 0000000000000008 R11: 0000000000000246 R12: 000000000000000a
[40674.525290] R13: 00007f77c5b3afb4 R14: 00007f759d7f9320 R15: 0000000000000000
[40674.532425]  </TASK>
[40674.534616] Modules linked in: binfmt_misc act_skbedit bluetooth nfsv3 nfs_acl rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd grace fscache netfs act_mirred cls_matchall nfnetlink_cttimeout nfnetlink act_gact cls_flower sch_ingress openvswitch nf_conncount nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 mlx5_vdpa vringh vhost_vdpa vhost vhost_iotlb vdpa bridge stp llc qrtr rfkill sunrpc intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common intel_ifs i10nm_edac nfit mlx5_ib libnvdimm ipmi_ssif ib_uverbs x86_pkg_temp_thermal intel_powerclamp acpi_ipmi ib_core coretemp ipmi_si kvm_intel dax_hmem cdc_ether kvm irqbypass cxl_acpi pmt_telemetry iTCO_wdt cxl_core ipmi_devintf ipmi_msghandler iTCO_vendor_support pmt_class dell_smbios mei_me usbnet isst_if_mbox_pci rapl intel_sdsi isst_if_mmio intel_vsec isst_if_common idxd mei intel_cstate wmi_bmof acpi_power_meter mii pcspkr dcdbas idxd_bus i2c_i801 dell_wmi_descriptor intel_uncore i2c_smbus i2c_ismt xfs libcrc32c sd_mod t10_pi sg
[40674.534690]  mlx5_core mlxfw mgag200 drm_kms_helper i2c_algo_bit drm_shmem_helper crct10dif_pclmul ahci crc32_pclmul tls libahci crc32c_intel psample bnxt_en megaraid_sas ghash_clmulni_intel pci_hyperv_intf drm libata tg3 wmi pinctrl_emmitsburg dm_mirror dm_region_hash dm_log dm_mod fuse