In article <[EMAIL PROTECTED]> you write:
>Dear list-readers,
>I have a bad SDRAM chip with exactly one bit error. Memtest86 shows
>that the bit error always occurs at the address 0x4eff508. I tried
>to calculate the page number and it should be 20223.
...
>Could someone tell me if there's another way to mark this single page
>as unusable ?

This ought to work.  Put the code somewhere at the end of mem_init() in 
arch/i386/mm/init.c

    long addr = 0x4eff508;
    set_bit(PG_reserved, &mem_map[MAP_NR(addr)].flags);

This is for linux-2.2.16 , I don't know if it works with 2.4.

  /Christer

-- 
"Just how much can I get away with and still go to heaven?"
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to