From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aj4uT-0000S9-9W for qemu-devel@nongnu.org; Thu, 24 Mar 2016 09:02:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aj4uN-00017S-Ji for qemu-devel@nongnu.org; Thu, 24 Mar 2016 09:02:45 -0400 Date: Thu, 24 Mar 2016 09:02:35 -0400 From: Luiz Capitulino Message-ID: <20160324090235.7d19c5dd@redhat.com> In-Reply-To: <1458743900-14742-1-git-send-email-sw@weilnetz.de> References: <1458743900-14742-1-git-send-email-sw@weilnetz.de> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] trace-events: Fix typos (found by codespell) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, zhang.zhanghailiang@huawei.com On Wed, 23 Mar 2016 15:38:20 +0100 Stefan Weil wrote: > Signed-off-by: Stefan Weil > --- > trace-events | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/trace-events b/trace-events > index d494de1..996a77f 100644 > --- a/trace-events > +++ b/trace-events > @@ -144,8 +144,8 @@ cpu_out(unsigned int addr, char size, unsigned int val) "addr %#x(%c) value %u" > # Since requests are raised via monitor, not many tracepoints are needed. > balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" > virtio_balloon_handle_output(const char *name, uint64_t gpa) "section name: %s gpa: %"PRIx64 > -virtio_balloon_get_config(uint32_t num_pages, uint32_t acutal) "num_pages: %d acutal: %d" > -virtio_balloon_set_config(uint32_t acutal, uint32_t oldacutal) "acutal: %d oldacutal: %d" > +virtio_balloon_get_config(uint32_t num_pages, uint32_t actual) "num_pages: %d actual: %d" > +virtio_balloon_set_config(uint32_t actual, uint32_t oldactual) "actual: %d oldactual: %d" > virtio_balloon_to_target(uint64_t target, uint32_t num_pages) "balloon target: %"PRIx64" num_pages: %d" > > # hw/intc/apic_common.c Reviewed-by: Luiz Capitulino