From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Whitcroft Subject: [PATCH 1/4] vmemmap: remove excess debugging References: Message-Id: Date: Thu, 02 Aug 2007 10:24:54 +0100 Sender: owner-linux-mm@kvack.org Return-Path: To: Andrew Morton Cc: linux-mm@kvack.org, linux-arch@vger.kernel.org, Christoph Hellwig , Nick Piggin , Christoph Lameter , Mel Gorman , Andy Whitcroft List-ID: Outputting each and every PTE as it is loaded is somewhat overkill zap this debug. Signed-off-by: Andy Whitcroft Acked-by: Mel Gorman --- mm/sparse.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/mm/sparse.c b/mm/sparse.c index 7dcea95..76316d4 100644 --- a/mm/sparse.c +++ b/mm/sparse.c @@ -340,9 +340,6 @@ static int __meminit vmemmap_populate_pte(pmd_t *pmd, unsigned long addr, entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL); set_pte(pte, entry); - printk(KERN_DEBUG "[%lx-%lx] PTE ->%p on node %d\n", - addr, addr + PAGE_SIZE - 1, p, node); - } else vmemmap_verify(pte, node, addr + PAGE_SIZE, end); -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org