From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzJdh-00068Y-N0 for qemu-devel@nongnu.org; Tue, 24 Jun 2014 01:51:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WzJdX-0002Ac-Rh for qemu-devel@nongnu.org; Tue, 24 Jun 2014 01:51:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27472) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzJdX-0002AX-Jf for qemu-devel@nongnu.org; Tue, 24 Jun 2014 01:51:19 -0400 Date: Tue, 24 Jun 2014 08:51:42 +0300 From: "Michael S. Tsirkin" Message-ID: <20140624055142.GB25614@redhat.com> References: <1403585109-25174-1-git-send-email-mst@redhat.com> <20140624053335.GA10276@G08FNSTD100614.fnst.cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140624053335.GA10276@G08FNSTD100614.fnst.cn.fujitsu.com> Subject: Re: [Qemu-devel] [PATCH] numa: fix comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Hu Tao Cc: Paolo Bonzini , qemu-devel@nongnu.org, Wanlong Gao , Eduardo Habkost On Tue, Jun 24, 2014 at 01:33:35PM +0800, Hu Tao wrote: > On Tue, Jun 24, 2014 at 07:45:15AM +0300, Michael S. Tsirkin wrote: > > Fix up English in comments: > > s/the each/each/ > > > > Signed-off-by: Michael S. Tsirkin > > --- > > numa.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/numa.c b/numa.c > > index e471afe..47049a5 100644 > > --- a/numa.c > > +++ b/numa.c > > @@ -172,7 +172,7 @@ void set_numa_nodes(void) > > if (i == nb_numa_nodes) { > > uint64_t usedmem = 0; > > > > - /* On Linux, the each node's border has to be 8MB aligned, > > + /* On Linux, each node's border has to be 8MB aligned, > > * the final node gets the rest. > > */ > > for (i = 0; i < nb_numa_nodes - 1; i++) { > > -- > > MST > > There is another one in the same function that can be fixed togehter: > > /* If no memory size if given for any node > > s/if/is/ > > Hu Fixed, thanks.