patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] patch 'vhost: fix payload size of reply' has been queued to stable release 18.08.1
@ 2018-11-30  9:48 Kevin Traynor
  0 siblings, 0 replies; only message in thread
From: Kevin Traynor @ 2018-11-30  9:48 UTC (permalink / raw)
  To: Maxime Coquelin; +Cc: Ilya Maximets, dpdk stable

Hi,

FYI, your patch has been queued to stable release 18.08.1

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 12/09/18. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the patch applied
to the branch. If the code is different (ie: not only metadata diffs), due for example to
a change in context or macro names, please double check it.

Thanks.

Kevin Traynor

---
>From aaeb441d0623d9d8f59885e1bc75165a779e2355 Mon Sep 17 00:00:00 2001
From: Maxime Coquelin <maxime.coquelin@redhat.com>
Date: Fri, 12 Oct 2018 14:40:32 +0200
Subject: [PATCH] vhost: fix payload size of reply

[ upstream commit 57b4d90b5893db2678ca3e28c50e1fcd37bb9b91 ]

QEMU doesn't expect any payload for the reply of
VHOST_USER_SET_LOG_BASE request, so don't send any.
Note that the Vhost-user specification isn't clear about
it and would need to be fixed.

Fixes: 54f9e32305d4 ("vhost: handle dirty pages logging request")

Reported-by: Ilya Maximets <i.maximets@samsung.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Acked-by: Ilya Maximets <i.maximets@samsung.com>
---
 lib/librte_vhost/vhost_user.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c
index 3738ae055..ba92d1650 100644
--- a/lib/librte_vhost/vhost_user.c
+++ b/lib/librte_vhost/vhost_user.c
@@ -1247,4 +1247,10 @@ vhost_user_set_log_base(struct virtio_net *dev, struct VhostUserMsg *msg)
 	dev->log_size = size;
 
+	/*
+	 * The spec is not clear about it (yet), but QEMU doesn't expect
+	 * any payload in the reply.
+	 */
+	msg->size = 0;
+
 	return 0;
 }
-- 
2.19.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2018-11-30 09:46:47.466358499 +0000
+++ 0001-vhost-fix-payload-size-of-reply.patch	2018-11-30 09:46:47.000000000 +0000
@@ -1,38 +1,39 @@
-From 57b4d90b5893db2678ca3e28c50e1fcd37bb9b91 Mon Sep 17 00:00:00 2001
+From aaeb441d0623d9d8f59885e1bc75165a779e2355 Mon Sep 17 00:00:00 2001
 From: Maxime Coquelin <maxime.coquelin@redhat.com>
 Date: Fri, 12 Oct 2018 14:40:32 +0200
 Subject: [PATCH] vhost: fix payload size of reply
 
+[ upstream commit 57b4d90b5893db2678ca3e28c50e1fcd37bb9b91 ]
+
 QEMU doesn't expect any payload for the reply of
 VHOST_USER_SET_LOG_BASE request, so don't send any.
 Note that the Vhost-user specification isn't clear about
 it and would need to be fixed.
 
 Fixes: 54f9e32305d4 ("vhost: handle dirty pages logging request")
-Cc: stable@dpdk.org
 
 Reported-by: Ilya Maximets <i.maximets@samsung.com>
 Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
 Acked-by: Ilya Maximets <i.maximets@samsung.com>
 ---
- lib/librte_vhost/vhost_user.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
+ lib/librte_vhost/vhost_user.c | 6 ++++++
+ 1 file changed, 6 insertions(+)
 
 diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c
-index a7729990d..1ef02c943 100644
+index 3738ae055..ba92d1650 100644
 --- a/lib/librte_vhost/vhost_user.c
 +++ b/lib/librte_vhost/vhost_user.c
-@@ -1287,5 +1287,9 @@ vhost_user_set_log_base(struct virtio_net **pdev, struct VhostUserMsg *msg)
+@@ -1247,4 +1247,10 @@ vhost_user_set_log_base(struct virtio_net *dev, struct VhostUserMsg *msg)
  	dev->log_size = size;
  
--	msg->size = sizeof(msg->payload.u64);
 +	/*
 +	 * The spec is not clear about it (yet), but QEMU doesn't expect
 +	 * any payload in the reply.
 +	 */
 +	msg->size = 0;
- 
- 	return VH_RESULT_REPLY;
++
+ 	return 0;
+ }
 -- 
 2.19.0
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-11-30  9:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-30  9:48 [dpdk-stable] patch 'vhost: fix payload size of reply' has been queued to stable release 18.08.1 Kevin Traynor

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).