From patchwork Fri Oct 21 09:57:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?6Zmz6Z+L5Lu7?= X-Patchwork-Id: 120970 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 93F6D1007D1 for ; Fri, 21 Oct 2011 20:57:37 +1100 (EST) Received: from localhost ([::1]:35456 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHBr1-00083x-Qx for incoming@patchwork.ozlabs.org; Fri, 21 Oct 2011 05:57:31 -0400 Received: from eggs.gnu.org ([140.186.70.92]:59278) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHBqw-00083s-60 for qemu-devel@nongnu.org; Fri, 21 Oct 2011 05:57:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RHBqt-0006d9-VJ for qemu-devel@nongnu.org; Fri, 21 Oct 2011 05:57:26 -0400 Received: from csmailer.cs.nctu.edu.tw ([140.113.235.130]:35881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHBqt-0006bV-7s; Fri, 21 Oct 2011 05:57:23 -0400 Received: from csmailer.cs.nctu.edu.tw (localhost [127.0.0.1]) by csmailer.cs.nctu.edu.tw (Postfix) with ESMTP id 454CAFBB; Fri, 21 Oct 2011 17:55:38 +0800 (CST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cs.nctu.edu.tw; h=date :from:to:cc:subject:message-id:mime-version:content-type; s= rsa1024; bh=arBvJG74JaT65LfK/ZV7QrHVpA8=; b=oFG9+Rxzv7eRPPCMoRi7 7Vo8kyXFG+Hfmmks7/glgkX0I+dWK2OGr6qqwEFpi/ohp8gJT280EsQFMLdx2rPK YRyQcbjiz4MwGD8yzncXCMnoRbMsAlNchZ5HE3oxeTJDI1X7N5Bvsnjbg+GlFodt LEJnx17B6i6BXoVZflhfAN8= Received: from alumni.cs.nctu.edu.tw (alumni.cs.nctu.edu.tw [140.113.235.116]) by csmailer.cs.nctu.edu.tw (Postfix) with ESMTP id 28D54FBA; Fri, 21 Oct 2011 17:55:38 +0800 (CST) Received: (from chenwj@localhost) by alumni.cs.nctu.edu.tw (8.14.4/8.14.4/Submit) id p9L9v9K1010181; Fri, 21 Oct 2011 17:57:09 +0800 (CST) (envelope-from chenwj) Date: Fri, 21 Oct 2011 17:57:09 +0800 From: =?utf-8?B?6Zmz6Z+L5Lu7?= To: qemu-devel@nongnu.org Message-ID: <20111021095709.GA10092@cs.nctu.edu.tw> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 140.113.235.130 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [Qemu-trivial] [PATCH] exec.c: Remove useless comment X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org As phys_ram_size had been removed since QEMU 0.12. Remove the useless comment. Signed-off-by: Chen Wen-Ren --- exec.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/exec.c b/exec.c index d0cbf15..fb21e76 100644 --- a/exec.c +++ b/exec.c @@ -472,7 +472,6 @@ static void code_gen_alloc(unsigned long tb_size) code_gen_buffer_size = tb_size; if (code_gen_buffer_size == 0) { #if defined(CONFIG_USER_ONLY) - /* in user mode, phys_ram_size is not meaningful */ code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; #else /* XXX: needs adjustments */