All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jan-Simon Möller" <dl9pf@gmx.de>
To: Johannes Weiner <hannes@saeurebad.de>
Cc: Len Brown <lenb@kernel.org>, "H. Peter Anvin" <hpa@zytor.com>,
	Pavel Machek <pavel@ucw.cz>, Jiri Kosina <jkosina@suse.cz>,
	Ingo Molnar <mingo@elte.hu>,
	devzero@web.de, linux-kernel@vger.kernel.org, rick@vanrein.org
Subject: Re: [PATCH 2.6.24] mm: BadRAM support for broken memory
Date: Tue, 11 Mar 2008 21:00:59 +0100	[thread overview]
Message-ID: <200803112100.59851.dl9pf@gmx.de> (raw)
In-Reply-To: <873aqxqd1c.fsf@saeurebad.de>

V4 with checkpatch.pl done ...



Start of Documentation for BadRAM/memmap - 
Reference: http://lkml.org/lkml/2008/3/2/42

Signed-off-by: Jan-Simon Moeller <dl9pf@gmx.de>


diff -up /dev/null bad-memory.txt
--- /dev/null   2007-09-21 21:12:45.000000000 +0200
+++ bad-memory.txt      2008-03-11 18:44:45.101344820 +0100
@@ -0,0 +1,56 @@
+March 2008
+Jan-Simon Moeller, dl9pf@gmx.de
+
+
+How to deal with bad memory e.g. reported by memtest86+ ?
+#########################################################
+
+There are three possibilities I know of:
+
+1) Reinsert/swap the memory modules
+
+2) Buy new modules (best!) or try to exchange the memory
+   if you have spare-parts
+
+3) Use BadRAM or memmap
+
+This Howto is about number 3) .
+
+
+BadRAM
+######
+BadRAM is the actively developed and available as kernel-patch
+here:  http://rick.vanrein.org/linux/badram/
+
+It takes the patterns of memtest86+ as arguments to exclude the defective
+areas of the memory.
+
+Example: memtest86+ reported here errors at address 0x18691458, 0x18698424 and
+         some others. All had 0x1869xxxx in common, so I chose a pattern of
+         0x18690000,0xffff0000.
+         This means exclusion of the area from 0x18690000 to 0x1869ffff
+         (which is a block of 64k).
+         My kernel-cmdline was:  badram=0x18690000,0xffff0000
+
+There are efforts to bring BadRAM into mainline in some way, possibly using
+memmap internally (maybe 2.6.26 ?).
+Thread on lkml: http://lkml.org/lkml/2008/3/2/42
+
+For more details see the BadRAM documentation.
+
+
+memmap
+######
+memmap is already in the kernel and usable as kernel-parameter at boot-time.
+Its syntax is different and you may need to calculate the values by yourself!
+
+Syntax to exclude a memory area (see kernel-parameters.txt for details):
+memmap=<size>$<address>
+
+With the numbers of the example above:
+memmap=64K$0x18690000
+ or
+memmap=0x10000$0x18690000
+
+TODO: Multiple areas to exclude using memmap ?
+








Add example of usage to memmap - evolved from thread about BadRAM inclusion.

Signed-off-by: Jan-Simon Moeller <dl9pf@gmx.de>


diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 533e67f..f25da88 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -1131,6 +1131,10 @@ and is between 256 and 4096 characters. It is defined in the file
 	memmap=nn[KMG]$ss[KMG]
 			[KNL,ACPI] Mark specific memory as reserved.
 			Region of memory to be used, from ss to ss+nn.
+			Example: Exclude memory from 0x18690000-0x1869ffff
+			         memmap=64K$0x18690000
+			         or
+			         memmap=0x10000$0x18690000
 
 	meye.*=		[HW] Set MotionEye Camera parameters
 			See Documentation/video4linux/meye.txt.

  reply	other threads:[~2008-03-11 20:01 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-04 12:21 [PATCH 2.6.24] mm: BadRAM support for broken memory devzero
2008-03-04 13:27 ` Ingo Molnar
2008-03-04 13:43   ` Rick van Rein
2008-03-04 14:06     ` Ingo Molnar
2008-03-04 15:05     ` Pavel Machek
2008-03-08 10:27   ` H. Peter Anvin
2008-03-08 11:13     ` Jiri Kosina
2008-03-10 10:12       ` Jan-Simon Möller
2008-03-10 11:24         ` Jan-Simon Möller
2008-03-10 11:52           ` Pavel Machek
2008-03-10 14:23             ` Jan-Simon Möller
2008-03-10 17:20               ` H. Peter Anvin
2008-03-10 17:48                 ` Jan-Simon Möller
2008-03-10 18:59                 ` Jan-Simon Möller
2008-03-10 19:16                   ` Jan-Simon Möller
2008-03-10 22:56                   ` Pavel Machek
2008-03-11  0:37                     ` Jan-Simon Möller
2008-03-11 17:23                   ` Len Brown
2008-03-11 17:49                     ` Jan-Simon Möller
2008-03-11 19:24                       ` Johannes Weiner
2008-03-11 20:00                         ` Jan-Simon Möller [this message]
2008-03-10 22:07                 ` Rick van Rein
2008-03-11  0:41                 ` Jan-Simon Möller
2008-03-11  6:41                   ` H. Peter Anvin
  -- strict thread matches above, loose matches on Subject: below --
2008-03-04 14:00 devzero
2008-03-02 13:42 Rick van Rein
2008-03-02 13:42 ` Rick van Rein
2008-03-02 17:01 ` KOSAKI Motohiro
2008-03-02 17:01   ` KOSAKI Motohiro
2008-03-02 17:42   ` Rick van Rein
2008-03-02 17:42     ` Rick van Rein
2008-03-03  3:21     ` KOSAKI Motohiro
2008-03-03  3:21       ` KOSAKI Motohiro
2008-03-03  5:32   ` Nick Piggin
2008-03-03  5:32     ` Nick Piggin
2008-03-03  7:14     ` KOSAKI Motohiro
2008-03-03  7:14       ` KOSAKI Motohiro
2008-03-03  7:35       ` Nick Piggin
2008-03-03  7:35         ` Nick Piggin
2008-03-03  9:49         ` KOSAKI Motohiro
2008-03-03  9:49           ` KOSAKI Motohiro
2008-03-03  9:58         ` KAMEZAWA Hiroyuki
2008-03-03  9:58           ` KAMEZAWA Hiroyuki
2008-03-02 17:53 ` Joseph Fannin
2008-03-02 19:34   ` Rick van Rein
2008-03-03 14:14 ` Pavel Machek
2008-03-03 16:41   ` KOSAKI Motohiro
2008-03-08 10:25     ` H. Peter Anvin
2008-03-08 10:30       ` H. Peter Anvin
2008-03-03 17:38 ` Randy Dunlap
2008-03-03 17:38   ` Randy Dunlap
     [not found] ` <20080303082238.GB13580@elte.hu>
     [not found]   ` <47CC3005.5090706@zytor.com>
     [not found]     ` <20080304133028.GC32383@elte.hu>
2008-03-04 16:29       ` H. Peter Anvin
2008-03-04 16:47         ` Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200803112100.59851.dl9pf@gmx.de \
    --to=dl9pf@gmx.de \
    --cc=devzero@web.de \
    --cc=hannes@saeurebad.de \
    --cc=hpa@zytor.com \
    --cc=jkosina@suse.cz \
    --cc=lenb@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=pavel@ucw.cz \
    --cc=rick@vanrein.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.