From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751506AbdEBGBi (ORCPT ); Tue, 2 May 2017 02:01:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52280 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750854AbdEBGBf (ORCPT ); Tue, 2 May 2017 02:01:35 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 2B926B924D Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jasowang@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 2B926B924D Subject: Re: [PATCH] tools/virtio: fix spelling mistake: "wakeus" -> "wakeups" To: Colin King , "Michael S . Tsirkin" , virtualization@lists.linux-foundation.org References: <20170429221421.12238-1-colin.king@canonical.com> Cc: linux-kernel@vger.kernel.org From: Jason Wang Message-ID: <2466cdcc-04b8-a476-b0af-5d86adbc1916@redhat.com> Date: Tue, 2 May 2017 14:01:28 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170429221421.12238-1-colin.king@canonical.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Tue, 02 May 2017 06:01:35 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2017年04月30日 06:14, Colin King wrote: > From: Colin Ian King > > trivial fix to spelling mistake in an error message. > > Signed-off-by: Colin Ian King > --- > tools/virtio/virtio_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c > index 76d6f583c249..0fecaec90d0d 100644 > --- a/tools/virtio/virtio_test.c > +++ b/tools/virtio/virtio_test.c > @@ -202,7 +202,7 @@ static void run_test(struct vdev_info *dev, struct vq_info *vq, > test = 0; > r = ioctl(dev->control, VHOST_TEST_RUN, &test); > assert(r >= 0); > - fprintf(stderr, "spurious wakeus: 0x%llx\n", spurious); > + fprintf(stderr, "spurious wakeups: 0x%llx\n", spurious); > } > > const char optstring[] = "h"; Acked-by: Jason Wang