* [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
* Re: [Qemu-devel] [PATCH] balloon: Fix typo
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
1 sibling, 0 replies; 3+ messages in thread
From: Markus Armbruster @ 2015-02-11 12:48 UTC (permalink / raw)
To: Eric Blake; +Cc: qemu-trivial, qemu-devel, Luiz Capitulino
Eric Blake <eblake@redhat.com> writes:
> 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 :)
You're human, after all :)
Reviewed-by: Markus Armbruster <armbru@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] balloon: Fix typo
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
1 sibling, 0 replies; 3+ messages in thread
From: Michael Tokarev @ 2015-02-16 8:31 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: qemu-trivial, Markus Armbruster, Luiz Capitulino
Applied to -trivial, thanks!
/mjt
^ permalink raw reply [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).