qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] balloon: Fix typo
@ 2015-02-10 22:40 Eric Blake
  2015-02-11 12:48 ` Markus Armbruster
  2015-02-16  8:31 ` Michael Tokarev
  0 siblings, 2 replies; 3+ messages in thread
From: Eric Blake @ 2015-02-10 22:40 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Markus Armbruster, Luiz Capitulino

Commit 422e0501 introduced a typo (unless removing an 'o' from
balloon is how you deflate it?)

Signed-off-by: Eric Blake <eblake@redhat.com>
---

I'm usually good at spotting typos when giving my R-b.  Oh well,
Dave is doing well to make sure my ego doesn't get too inflated :)

 balloon.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/balloon.c b/balloon.c
index dea19a4..70c00f5 100644
--- a/balloon.c
+++ b/balloon.c
@@ -36,7 +36,7 @@ static QEMUBalloonEvent *balloon_event_fn;
 static QEMUBalloonStatus *balloon_stat_fn;
 static void *balloon_opaque;

-static bool have_ballon(Error **errp)
+static bool have_balloon(Error **errp)
 {
     if (kvm_enabled() && !kvm_has_sync_mmu()) {
         error_set(errp, ERROR_CLASS_KVM_MISSING_CAP,
@@ -81,7 +81,7 @@ BalloonInfo *qmp_query_balloon(Error **errp)
 {
     BalloonInfo *info;

-    if (!have_ballon(errp)) {
+    if (!have_balloon(errp)) {
         return NULL;
     }

@@ -92,7 +92,7 @@ BalloonInfo *qmp_query_balloon(Error **errp)

 void qmp_balloon(int64_t target, Error **errp)
 {
-    if (!have_ballon(errp)) {
+    if (!have_balloon(errp)) {
         return;
     }

-- 
2.1.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-02-16  8:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-10 22:40 [Qemu-devel] [PATCH] balloon: Fix typo Eric Blake
2015-02-11 12:48 ` Markus Armbruster
2015-02-16  8:31 ` Michael Tokarev

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