Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762010Ab3ECAGB (ORCPT ); Thu, 2 May 2013 20:06:01 -0400 Received: from e9.ny.us.ibm.com ([32.97.182.139]:55431 "EHLO e9.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1762057Ab3ECABu (ORCPT ); Thu, 2 May 2013 20:01:50 -0400 From: Cody P Schafer To: Linux MM Cc: LKML , Cody P Schafer , Simon Jeons Subject: [RFC PATCH v3 29/31] mm/page_alloc: make pr_err() in page_outside_zone_boundaries() more useful Date: Thu, 2 May 2013 17:01:01 -0700 Message-Id: <1367539263-19999-30-git-send-email-cody@linux.vnet.ibm.com> X-Mailer: git-send-email 1.8.2.2 In-Reply-To: <1367539263-19999-1-git-send-email-cody@linux.vnet.ibm.com> References: <1367539263-19999-1-git-send-email-cody@linux.vnet.ibm.com> X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13050300-7182-0000-0000-00000684BA3B Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1056 Lines: 31 Signed-off-by: Cody P Schafer --- mm/page_alloc.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 3695ca5..4fe35b24 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -254,8 +254,11 @@ static int page_outside_zone_boundaries(struct zone *zone, struct page *page) } while (zone_span_seqretry(zone, seq)); if (ret) - pr_err("page %lu outside zone [ %lu - %lu ]\n", - pfn, start_pfn, start_pfn + sp); + pr_err("page with pfn %05lx outside zone %s with pfn range {%05lx-%05lx} in node %d with pfn range {%05lx-%05lx}\n", + pfn, zone->name, start_pfn, start_pfn + sp, + zone->zone_pgdat->node_id, + zone->zone_pgdat->node_start_pfn, + pgdat_end_pfn(zone->zone_pgdat)); return ret; } -- 1.8.2.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/