From patchwork Sat Sep 11 12:38:57 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Edgar E. Iglesias" X-Patchwork-Id: 64512 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 97A01B70A5 for ; Sat, 11 Sep 2010 22:56:06 +1000 (EST) Received: from localhost ([127.0.0.1]:39034 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OuPcg-0005Ih-T8 for incoming@patchwork.ozlabs.org; Sat, 11 Sep 2010 08:56:02 -0400 Received: from [140.186.70.92] (port=39024 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OuPbP-0004rm-Kl for qemu-devel@nongnu.org; Sat, 11 Sep 2010 08:54:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OuPbO-0002jg-BU for qemu-devel@nongnu.org; Sat, 11 Sep 2010 08:54:43 -0400 Received: from anubis.se.axis.com ([195.60.68.12]:49427) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OuPbO-0002if-6P for qemu-devel@nongnu.org; Sat, 11 Sep 2010 08:54:42 -0400 Received: from localhost (localhost [127.0.0.1]) by anubis.se.axis.com (Postfix) with ESMTP id 5456519D21; Sat, 11 Sep 2010 14:54:39 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at anubis.se.axis.com X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "To" Received: from anubis.se.axis.com ([127.0.0.1]) by localhost (anubis.se.axis.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id JMoVrX-1IxLD; Sat, 11 Sep 2010 14:54:39 +0200 (CEST) Received: from miranda.se.axis.com (miranda.se.axis.com [10.0.2.171]) by anubis.se.axis.com (Postfix) with ESMTPS id 2C40D19D20; Sat, 11 Sep 2010 14:54:39 +0200 (CEST) Received: from localhost (edgar.se.axis.com [10.93.151.1]) by miranda.se.axis.com (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id o8BCscD3028818; Sat, 11 Sep 2010 14:54:38 +0200 From: "Edgar E. Iglesias" To: qemu-devel@nongnu.org Date: Sat, 11 Sep 2010 14:38:57 +0200 Message-Id: <1284208737-16361-1-git-send-email-edgar.iglesias@gmail.com> X-Mailer: git-send-email 1.7.1 To: edgar.iglesias@gmail.com X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: "Edgar E. Iglesias" Subject: [Qemu-devel] [PATCH] powerpc: Avoid TLB related log spamming X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Invalid TLB entries are normal and should not spam the log. Signed-off-by: Edgar E. Iglesias --- target-ppc/helper.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/target-ppc/helper.c b/target-ppc/helper.c index d342b09..a7ec1f4 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -1050,7 +1050,6 @@ static inline int ppcemb_tlb_check(CPUState *env, ppcemb_tlb_t *tlb, /* Check valid flag */ if (!(tlb->prot & PAGE_VALID)) { - qemu_log("%s: TLB %d not valid\n", __func__, i); return -1; } mask = ~(tlb->size - 1);