From owner-p4-projects Fri Jul 26 19:37: 7 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 4AA8D37B405; Fri, 26 Jul 2002 19:37:01 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E43AE37B401 for ; Fri, 26 Jul 2002 19:37:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A69FD43E42 for ; Fri, 26 Jul 2002 19:37:00 -0700 (PDT) (envelope-from peter@freebsd.org) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6R2b0JU025376 for ; Fri, 26 Jul 2002 19:37:00 -0700 (PDT) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6R2b0A6025371 for perforce@freebsd.org; Fri, 26 Jul 2002 19:37:00 -0700 (PDT) Date: Fri, 26 Jul 2002 19:37:00 -0700 (PDT) Message-Id: <200207270237.g6R2b0A6025371@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm Subject: PERFORCE change 14969 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=14969 Change 14969 by peter@peter_ia64 on 2002/07/26 19:36:50 ignore memory above 4G right now. pci is Not Happy. Affected files ... .. //depot/projects/ia64/sys/ia64/ia64/machdep.c#41 edit Differences ... ==== //depot/projects/ia64/sys/ia64/ia64/machdep.c#41 (text+ko) ==== @@ -570,6 +570,15 @@ if (mdp->Type != EfiConventionalMemory) continue; + if (pfn0 >= ia64_btop(0x100000000UL)) { + printf("skipping memory chunk start 0x%lx\n", mdp->PhysicalStart); + continue; + } + if (pfn1 >= ia64_btop(0x100000000UL)) { + printf("skipping memory chunk end 0x%lx\n", mdp->PhysicalStart + mdp->NumberOfPages * 4096); + continue; + } + /* * We have a memory descriptor that describes conventional * memory that is for general use. We must determine if the To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message