From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1IQK-0005qr-AK for qemu-devel@nongnu.org; Sun, 29 Jun 2014 12:57:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X1IQC-0002ia-TK for qemu-devel@nongnu.org; Sun, 29 Jun 2014 12:57:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42978) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1IQC-0002iK-LC for qemu-devel@nongnu.org; Sun, 29 Jun 2014 12:57:44 -0400 Date: Sun, 29 Jun 2014 19:58:03 +0300 From: "Michael S. Tsirkin" Message-ID: <1404060115-27410-2-git-send-email-mst@redhat.com> References: <1404060115-27410-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1404060115-27410-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 01/37] numa: fix comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Eduardo Habkost , Hu Tao , Anthony Liguori , Igor Mammedov , Paolo Bonzini , Wanlong Gao Fix up English in comments: s/the each/each/ Signed-off-by: Michael S. Tsirkin Reviewed-by: Igor Mammedov --- 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