From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51123) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgxsD-0002DL-56 for qemu-devel@nongnu.org; Tue, 29 Sep 2015 12:35:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zgxs8-0003sa-PT for qemu-devel@nongnu.org; Tue, 29 Sep 2015 12:35:25 -0400 Received: from mail-qk0-x235.google.com ([2607:f8b0:400d:c09::235]:34659) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zgxs8-0003sV-L9 for qemu-devel@nongnu.org; Tue, 29 Sep 2015 12:35:20 -0400 Received: by qkfq186 with SMTP id q186so5546481qkf.1 for ; Tue, 29 Sep 2015 09:35:20 -0700 (PDT) Sender: =?UTF-8?B?TWFyYy1BbmRyw6kgTHVyZWF1?= From: marcandre.lureau@redhat.com Date: Tue, 29 Sep 2015 18:34:37 +0200 Message-Id: <1443544494-28737-8-git-send-email-marcandre.lureau@redhat.com> In-Reply-To: <1443544494-28737-1-git-send-email-marcandre.lureau@redhat.com> References: <1443544494-28737-1-git-send-email-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v6 07/24] vhost: document log resizing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: haifeng.lin@huawei.com, mst@redhat.com, thibaut.collet@6wind.com, jasowang@redhat.com, pbonzini@redhat.com, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= From: Marc-André Lureau Signed-off-by: Marc-André Lureau --- hw/virtio/vhost.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c index c0ed5b2..67e09fe 100644 --- a/hw/virtio/vhost.c +++ b/hw/virtio/vhost.c @@ -334,6 +334,8 @@ static inline void vhost_dev_log_resize(struct vhost_dev* dev, uint64_t size) uint64_t log_base = (uintptr_t)log->log; int r; + /* inform backend of log switching, this must be done before + releasing the current log, to ensure no logging is lost */ r = dev->vhost_ops->vhost_call(dev, VHOST_SET_LOG_BASE, &log_base); assert(r >= 0); vhost_log_put(dev, true); -- 2.4.3