From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36339) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z36it-0000aI-FQ for qemu-devel@nongnu.org; Thu, 11 Jun 2015 13:57:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z36ip-00081U-V6 for qemu-devel@nongnu.org; Thu, 11 Jun 2015 13:57:03 -0400 Received: from e17.ny.us.ibm.com ([129.33.205.207]:56862) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z36ip-00081B-QT for qemu-devel@nongnu.org; Thu, 11 Jun 2015 13:56:59 -0400 Received: from /spool/local by e17.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 11 Jun 2015 13:56:57 -0400 Received: from b01cxnp22034.gho.pok.ibm.com (b01cxnp22034.gho.pok.ibm.com [9.57.198.24]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id E9D3C6E804A for ; Thu, 11 Jun 2015 13:48:42 -0400 (EDT) Received: from d01av01.pok.ibm.com (d01av01.pok.ibm.com [9.56.224.215]) by b01cxnp22034.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t5BHutgp62193886 for ; Thu, 11 Jun 2015 17:56:55 GMT Received: from d01av01.pok.ibm.com (localhost [127.0.0.1]) by d01av01.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t5BHutMV030830 for ; Thu, 11 Jun 2015 13:56:55 -0400 Message-ID: <5579CBB6.8080604@linux.vnet.ibm.com> Date: Thu, 11 Jun 2015 12:56:06 -0500 From: "Michael R. Hines" MIME-Version: 1.0 References: <1434043048-4444-1-git-send-email-dgilbert@redhat.com> <1434043048-4444-5-git-send-email-dgilbert@redhat.com> In-Reply-To: <1434043048-4444-5-git-send-email-dgilbert@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 04/12] rdma typos List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Dr. David Alan Gilbert (git)" , qemu-devel@nongnu.org Cc: amit.shah@redhat.com, arei.gonglei@huawei.com, mrhines@us.ibm.com, quintela@redhat.com On 06/11/2015 12:17 PM, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > A couple of typo fixes. > > Signed-off-by: Dr. David Alan Gilbert > --- > migration/rdma.c | 6 +++--- > trace-events | 4 ++-- > 2 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/migration/rdma.c b/migration/rdma.c > index bc73ff8..44ed996 100644 > --- a/migration/rdma.c > +++ b/migration/rdma.c > @@ -1215,7 +1215,7 @@ const char *print_wrid(int wrid) > > /* > * Perform a non-optimized memory unregistration after every transfer > - * for demonsration purposes, only if pin-all is not requested. > + * for demonstration purposes, only if pin-all is not requested. > * > * Potential optimizations: > * 1. Start a new thread to run this function continuously > @@ -3279,7 +3279,7 @@ static void rdma_accept_incoming_migration(void *opaque) > QEMUFile *f; > Error *local_err = NULL, **errp = &local_err; > > - trace_qemu_dma_accept_incoming_migration(); > + trace_qemu_rdma_accept_incoming_migration(); > ret = qemu_rdma_accept(rdma); > > if (ret) { > @@ -3287,7 +3287,7 @@ static void rdma_accept_incoming_migration(void *opaque) > return; > } > > - trace_qemu_dma_accept_incoming_migration_accepted(); > + trace_qemu_rdma_accept_incoming_migration_accepted(); > > f = qemu_fopen_rdma(rdma, "rb"); > if (f == NULL) { > diff --git a/trace-events b/trace-events > index 2662ffa..8b468fe 100644 > --- a/trace-events > +++ b/trace-events > @@ -1398,8 +1398,8 @@ migrate_pending(uint64_t size, uint64_t max) "pending size %" PRIu64 " max %" PR > migrate_transferred(uint64_t tranferred, uint64_t time_spent, double bandwidth, uint64_t size) "transferred %" PRIu64 " time_spent %" PRIu64 " bandwidth %g max_size %" PRId64 > > # migration/rdma.c > -qemu_dma_accept_incoming_migration(void) "" > -qemu_dma_accept_incoming_migration_accepted(void) "" > +qemu_rdma_accept_incoming_migration(void) "" > +qemu_rdma_accept_incoming_migration_accepted(void) "" What happened to the actual message inside the quotes? =)