From: Jay Zhou <jianjay.zhou@huawei.com>
To: qemu-devel@nongnu.org, mst@redhat.com
Cc: weidong.huang@huawei.com, arei.gonglei@huawei.com,
wangxinxin.wang@huawei.com, jianjay.zhou@huawei.com,
gary.liuzhe@huawei.com
Subject: [Qemu-devel] [PATCH 2/2] vhost: double check memslot number
Date: Fri, 15 Dec 2017 00:36:32 +0800 [thread overview]
Message-ID: <1513269392-23224-3-git-send-email-jianjay.zhou@huawei.com> (raw)
In-Reply-To: <1513269392-23224-1-git-send-email-jianjay.zhou@huawei.com>
If the VM already has N(N>=8) available memory slots for vhost user,
the VM will be crashed in vhost_user_set_mem_table if we try to
hotplug the first vhost user NIC.
This patch checks if memslot number exceeded or not after updating
vhost_user_used_memslots.
Signed-off-by: Jay Zhou <jianjay.zhou@huawei.com>
---
hw/virtio/vhost.c | 40 ++++++++++++++++++++++++++++++----------
1 file changed, 30 insertions(+), 10 deletions(-)
diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c
index 0cf8a53..33aed1f 100644
--- a/hw/virtio/vhost.c
+++ b/hw/virtio/vhost.c
@@ -1243,13 +1243,31 @@ static void vhost_virtqueue_cleanup(struct vhost_virtqueue *vq)
event_notifier_cleanup(&vq->masked_notifier);
}
+static bool vhost_dev_memslots_is_exceeded(struct vhost_dev *hdev)
+{
+ unsigned int n_memslots = 0;
+
+ if (hdev->vhost_ops->vhost_get_used_memslots) {
+ n_memslots = hdev->vhost_ops->vhost_get_used_memslots();
+ } else {
+ n_memslots = used_memslots;
+ }
+
+ if (n_memslots > hdev->vhost_ops->vhost_backend_memslots_limit(hdev)) {
+ error_report("vhost backend memory slots limit is less"
+ " than current number of present memory slots");
+ return true;
+ }
+
+ return false;
+}
+
int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
VhostBackendType backend_type, uint32_t busyloop_timeout)
{
uint64_t features;
int i, r, n_initialized_vqs = 0;
Error *local_err = NULL;
- unsigned int n_memslots = 0;
hdev->vdev = NULL;
hdev->migration_blocker = NULL;
@@ -1262,15 +1280,7 @@ int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
goto fail;
}
- if (hdev->vhost_ops->vhost_get_used_memslots) {
- n_memslots = hdev->vhost_ops->vhost_get_used_memslots();
- } else {
- n_memslots = used_memslots;
- }
-
- if (n_memslots > hdev->vhost_ops->vhost_backend_memslots_limit(hdev)) {
- error_report("vhost backend memory slots limit is less"
- " than current number of present memory slots");
+ if (vhost_dev_memslots_is_exceeded(hdev)) {
r = -1;
goto fail;
}
@@ -1356,6 +1366,16 @@ int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
hdev->memory_changed = false;
memory_listener_register(&hdev->memory_listener, &address_space_memory);
QLIST_INSERT_HEAD(&vhost_devices, hdev, entry);
+
+ if (vhost_dev_memslots_is_exceeded(hdev)) {
+ r = -1;
+ if (busyloop_timeout) {
+ goto fail_busyloop;
+ } else {
+ goto fail;
+ }
+ }
+
return 0;
fail_busyloop:
--
1.8.3.1
next prev parent reply other threads:[~2017-12-14 16:37 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-14 16:36 [Qemu-devel] [PATCH 0/2] vhost: two fixes Jay Zhou
2017-12-14 16:36 ` [Qemu-devel] [PATCH 1/2] vhost: add used memslot number for vhost-user Jay Zhou
2017-12-14 16:36 ` Jay Zhou [this message]
2017-12-14 18:27 ` [Qemu-devel] [PATCH 0/2] vhost: two fixes Michael S. Tsirkin
2017-12-14 19:49 ` Dr. David Alan Gilbert
2017-12-15 2:38 ` Zhoujian (jay)
2017-12-15 4:36 ` Michael S. Tsirkin
2017-12-15 4:51 ` Zhoujian (jay)
2017-12-15 6:06 ` Zhoujian (jay)
2017-12-15 9:24 ` Dr. David Alan Gilbert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1513269392-23224-3-git-send-email-jianjay.zhou@huawei.com \
--to=jianjay.zhou@huawei.com \
--cc=arei.gonglei@huawei.com \
--cc=gary.liuzhe@huawei.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=wangxinxin.wang@huawei.com \
--cc=weidong.huang@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).