Re: Problem with 1G RAM

MOLNAR Ingo (mingo@chiara.csoma.elte.hu)
Fri, 4 Dec 1998 23:38:38 +0100 (CET)


On Fri, 4 Dec 1998, Neil Conway wrote:

> OK, who wants to volunteer to insert a check in the kernel: STOP if
> __PAGE_OFFSET is incompatible with the amount of RAM specified by
> "mem=xxxM" ? Failing that, print a warning, and reduce the RAM to (say)
> 960MB or whatever.

if you are talking about 2.1, then it's already there in 2.1.131:

#define VMALLOC_RESERVE (64 << 20) /* 64MB for vmalloc */
#define MAXMEM ((unsigned long)(-PAGE_OFFSET-VMALLOC_RESERVE))

if (memory_end > MAXMEM)
memory_end = MAXMEM;

there should be a warning that we have clipped memory though:

+ printk("WARNING: clipping memory to %dK!\n", MAXMEM/1024);
+ mdelay(3);

-- mingo

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/