From: Jason Wang <jasowang@redhat.com>
To: qemu-devel@nongnu.org, peter.maydell@linaro.org
Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Jason Wang <jasowang@redhat.com>
Subject: [Qemu-devel] [PULL 08/13] qmp: Add announce-self command
Date: Fri, 22 Feb 2019 22:55:15 +0800 [thread overview]
Message-ID: <1550847320-25110-9-git-send-email-jasowang@redhat.com> (raw)
In-Reply-To: <1550847320-25110-1-git-send-email-jasowang@redhat.com>
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
Add a qmp command that can trigger guest announcements.
It uses its own announce-timer instance, and parameters
passed to it explicitly in the command.
Like most qmp commands, it's in the main thread/bql, so
there's no racing with any outstanding timer.
Based on work of Germano Veit Michel <germano@redhat.com> and
Vladislav Yasevich <vyasevic@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
net/announce.c | 7 +++++++
qapi/net.json | 20 ++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/net/announce.c b/net/announce.c
index 070f37a..91e9a6e 100644
--- a/net/announce.c
+++ b/net/announce.c
@@ -12,6 +12,7 @@
#include "net/net.h"
#include "qapi/clone-visitor.h"
#include "qapi/qapi-visit-net.h"
+#include "qapi/qapi-commands-net.h"
#include "trace.h"
int64_t qemu_announce_timer_step(AnnounceTimer *timer)
@@ -131,3 +132,9 @@ void qemu_announce_self(AnnounceTimer *timer, AnnounceParameters *params)
qemu_announce_timer_del(timer);
}
}
+
+void qmp_announce_self(AnnounceParameters *params, Error **errp)
+{
+ static AnnounceTimer announce_timer;
+ qemu_announce_self(&announce_timer, params);
+}
diff --git a/qapi/net.json b/qapi/net.json
index 5face0c..c093087 100644
--- a/qapi/net.json
+++ b/qapi/net.json
@@ -707,3 +707,23 @@
'max': 'int',
'rounds': 'int',
'step': 'int' } }
+
+##
+# @announce-self:
+#
+# Trigger generation of broadcast RARP frames to update network switches.
+# This can be useful when network bonds fail-over the active slave.
+#
+# @params: AnnounceParameters giving timing and repetition count of announce
+#
+# Example:
+#
+# -> { "execute": "announce-self"
+# "arguments": { "params:" {
+# "initial": 50, "max": 550, "rounds": 10, "step": 50 } } }
+# <- { "return": {} }
+#
+# Since: 4.0
+##
+{ 'command': 'announce-self',
+ 'data' : {'params': 'AnnounceParameters'} }
--
2.5.0
next prev parent reply other threads:[~2019-02-22 14:58 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-22 14:55 [Qemu-devel] [PULL 00/13] Netpatches Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 01/13] net/colo-compare.c: Remove duplicated code Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 02/13] net: Introduce announce timer Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 03/13] migration: Add announce parameters Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 04/13] virtio-net: Switch to using announce timer Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 05/13] migration: " Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 06/13] net: Add a network device specific self-announcement ability Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 07/13] virtio-net: Allow qemu_announce_self to trigger virtio announcements Jason Wang
2019-02-22 14:55 ` Jason Wang [this message]
2019-02-22 14:55 ` [Qemu-devel] [PULL 09/13] hmp: Add hmp_announce_self Jason Wang
2019-02-27 8:28 ` Thomas Huth
2019-02-27 13:11 ` Dr. David Alan Gilbert
2019-02-22 14:55 ` [Qemu-devel] [PULL 10/13] tests: Add a test for qemu self announcements Jason Wang
2019-02-27 8:21 ` Thomas Huth
2019-02-27 12:58 ` Dr. David Alan Gilbert
2019-02-22 14:55 ` [Qemu-devel] [PULL 11/13] net: netmap: small improvements netmap_send() Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 12/13] net: netmap: simplify netmap_receive() Jason Wang
2019-02-22 14:55 ` [Qemu-devel] [PULL 13/13] net: netmap: improve netmap_receive_iov() Jason Wang
2019-02-26 16:06 ` [Qemu-devel] [PULL 00/13] Netpatches Peter Maydell
2019-02-26 19:50 ` 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=1550847320-25110-9-git-send-email-jasowang@redhat.com \
--to=jasowang@redhat.com \
--cc=dgilbert@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/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).