diff options
author | Dongli Zhang <[email protected]> | 2021-10-22 16:31:39 -0700 |
---|---|---|
committer | David S. Miller <[email protected]> | 2021-10-25 16:13:12 +0100 |
commit | 042b2046d0f05cf8124c26ff65dbb6148a4404fb (patch) | |
tree | 6fd23a47c94c2f0f7ddda58561581f8cf20d975f /lib/test_overflow.c | |
parent | 0c57eeecc559ca6bc18b8c4e2808bc78dbe769b0 (diff) |
xen/netfront: stop tx queues during live migration
The tx queues are not stopped during the live migration. As a result, the
ndo_start_xmit() may access netfront_info->queues which is freed by
talk_to_netback()->xennet_destroy_queues().
This patch is to netif_device_detach() at the beginning of xen-netfront
resuming, and netif_device_attach() at the end of resuming.
CPU A CPU B
talk_to_netback()
-> if (info->queues)
xennet_destroy_queues(info);
to free netfront_info->queues
xennet_start_xmit()
to access netfront_info->queues
-> err = xennet_create_queues(info, &num_queues);
The idea is borrowed from virtio-net.
Cc: Joe Jin <[email protected]>
Signed-off-by: Dongli Zhang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'lib/test_overflow.c')
0 files changed, 0 insertions, 0 deletions