All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wu Fengguang <fengguang.wu@intel.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Nick Piggin <npiggin@suse.de>,
	Wu Fengguang <fengguang.wu@intel.com>
Cc: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Cc: Andi Kleen <andi@firstfloor.org>,
	"riel@redhat.com" <riel@redhat.com>,
	"chris.mason@oracle.com" <chris.mason@oracle.com>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>
Subject: [PATCH 1/5] HWPOISON: define VM_FAULT_HWPOISON to 0 when feature is disabled
Date: Thu, 11 Jun 2009 22:22:40 +0800	[thread overview]
Message-ID: <20090611144430.414445947@intel.com> (raw)
In-Reply-To: 20090611142239.192891591@intel.com

[-- Attachment #1: hwpoison-remove-ifdef.patch --]
[-- Type: text/plain, Size: 1480 bytes --]

So as to eliminate one #ifdef in the c source.

Proposed by Nick Piggin.

CC: Nick Piggin <npiggin@suse.de>
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
---
 arch/x86/mm/fault.c |    3 +--
 include/linux/mm.h  |    7 ++++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

--- sound-2.6.orig/arch/x86/mm/fault.c
+++ sound-2.6/arch/x86/mm/fault.c
@@ -819,14 +819,13 @@ do_sigbus(struct pt_regs *regs, unsigned
 	tsk->thread.error_code	= error_code;
 	tsk->thread.trap_no	= 14;
 
-#ifdef CONFIG_MEMORY_FAILURE
 	if (fault & VM_FAULT_HWPOISON) {
 		printk(KERN_ERR
 	"MCE: Killing %s:%d due to hardware memory corruption fault at %lx\n",
 			tsk->comm, tsk->pid, address);
 		code = BUS_MCEERR_AR;
 	}
-#endif
+
 	force_sig_info_fault(SIGBUS, code, address, tsk);
 }
 
--- sound-2.6.orig/include/linux/mm.h
+++ sound-2.6/include/linux/mm.h
@@ -702,11 +702,16 @@ static inline int page_mapped(struct pag
 #define VM_FAULT_SIGBUS	0x0002
 #define VM_FAULT_MAJOR	0x0004
 #define VM_FAULT_WRITE	0x0008	/* Special case for get_user_pages */
-#define VM_FAULT_HWPOISON 0x0010	/* Hit poisoned page */
 
 #define VM_FAULT_NOPAGE	0x0100	/* ->fault installed the pte, not return page */
 #define VM_FAULT_LOCKED	0x0200	/* ->fault locked the returned page */
 
+#ifdef CONFIG_MEMORY_FAILURE
+#define VM_FAULT_HWPOISON 0x0010	/* Hit poisoned page */
+#else
+#define VM_FAULT_HWPOISON 0
+#endif
+
 #define VM_FAULT_ERROR	(VM_FAULT_OOM | VM_FAULT_SIGBUS | VM_FAULT_HWPOISON)
 
 /*

-- 


WARNING: multiple messages have this Message-ID (diff)
From: Wu Fengguang <fengguang.wu@intel.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Nick Piggin <npiggin@suse.de>,
	Wu Fengguang <fengguang.wu@intel.com>,
	Hugh Dickins <hugh.dickins@tiscali.co.uk>,
	Andi Kleen <andi@firstfloor.org>,
	"riel@redhat.com" <riel@redhat.com>,
	"chris.mason@oracle.com" <chris.mason@oracle.com>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>
Subject: [PATCH 1/5] HWPOISON: define VM_FAULT_HWPOISON to 0 when feature is disabled
Date: Thu, 11 Jun 2009 22:22:40 +0800	[thread overview]
Message-ID: <20090611144430.414445947@intel.com> (raw)
In-Reply-To: 20090611142239.192891591@intel.com

[-- Attachment #1: hwpoison-remove-ifdef.patch --]
[-- Type: text/plain, Size: 1705 bytes --]

So as to eliminate one #ifdef in the c source.

Proposed by Nick Piggin.

CC: Nick Piggin <npiggin@suse.de>
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
---
 arch/x86/mm/fault.c |    3 +--
 include/linux/mm.h  |    7 ++++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

--- sound-2.6.orig/arch/x86/mm/fault.c
+++ sound-2.6/arch/x86/mm/fault.c
@@ -819,14 +819,13 @@ do_sigbus(struct pt_regs *regs, unsigned
 	tsk->thread.error_code	= error_code;
 	tsk->thread.trap_no	= 14;
 
-#ifdef CONFIG_MEMORY_FAILURE
 	if (fault & VM_FAULT_HWPOISON) {
 		printk(KERN_ERR
 	"MCE: Killing %s:%d due to hardware memory corruption fault at %lx\n",
 			tsk->comm, tsk->pid, address);
 		code = BUS_MCEERR_AR;
 	}
-#endif
+
 	force_sig_info_fault(SIGBUS, code, address, tsk);
 }
 
--- sound-2.6.orig/include/linux/mm.h
+++ sound-2.6/include/linux/mm.h
@@ -702,11 +702,16 @@ static inline int page_mapped(struct pag
 #define VM_FAULT_SIGBUS	0x0002
 #define VM_FAULT_MAJOR	0x0004
 #define VM_FAULT_WRITE	0x0008	/* Special case for get_user_pages */
-#define VM_FAULT_HWPOISON 0x0010	/* Hit poisoned page */
 
 #define VM_FAULT_NOPAGE	0x0100	/* ->fault installed the pte, not return page */
 #define VM_FAULT_LOCKED	0x0200	/* ->fault locked the returned page */
 
+#ifdef CONFIG_MEMORY_FAILURE
+#define VM_FAULT_HWPOISON 0x0010	/* Hit poisoned page */
+#else
+#define VM_FAULT_HWPOISON 0
+#endif
+
 #define VM_FAULT_ERROR	(VM_FAULT_OOM | VM_FAULT_SIGBUS | VM_FAULT_HWPOISON)
 
 /*

-- 

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2009-06-11 14:55 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-11 14:22 [PATCH 0/5] [RFC] HWPOISON incremental fixes Wu Fengguang
2009-06-11 14:22 ` Wu Fengguang
2009-06-11 14:22 ` Wu Fengguang [this message]
2009-06-11 14:22   ` [PATCH 1/5] HWPOISON: define VM_FAULT_HWPOISON to 0 when feature is disabled Wu Fengguang
2009-06-11 15:44   ` Rik van Riel
2009-06-11 15:44     ` Rik van Riel
2009-06-12 10:00   ` Andi Kleen
2009-06-12 10:00     ` Andi Kleen
2009-06-12 13:15     ` Wu Fengguang
2009-06-12 13:15       ` Wu Fengguang
2009-06-12 11:22   ` Ingo Molnar
2009-06-12 11:22     ` Ingo Molnar
2009-06-12 12:57     ` Wu Fengguang
2009-06-12 12:57       ` Wu Fengguang
2009-06-12 13:17       ` Ingo Molnar
2009-06-12 13:17         ` Ingo Molnar
2009-06-12 13:33         ` Wu Fengguang
2009-06-12 13:33           ` Wu Fengguang
2009-06-12 15:36           ` Ingo Molnar
2009-06-12 15:36             ` Ingo Molnar
2009-06-12 16:14             ` Wu Fengguang
2009-06-12 16:14               ` Wu Fengguang
2009-06-12 18:07               ` Alan Cox
2009-06-12 18:07                 ` Alan Cox
2009-06-12 17:55             ` Theodore Tso
2009-06-12 17:55               ` Theodore Tso
2009-06-12 13:58         ` Andi Kleen
2009-06-12 13:58           ` Andi Kleen
2009-06-12 15:28         ` Linus Torvalds
2009-06-12 15:28           ` Linus Torvalds
2009-06-12 15:35           ` Ingo Molnar
2009-06-12 15:35             ` Ingo Molnar
2009-06-12 16:05             ` Rik van Riel
2009-06-12 16:05               ` Rik van Riel
2009-06-12 16:37             ` H. Peter Anvin
2009-06-12 16:37               ` H. Peter Anvin
2009-06-12 16:48               ` Ingo Molnar
2009-06-12 16:48                 ` Ingo Molnar
2009-06-15  7:04               ` Nick Piggin
2009-06-15  7:04                 ` Nick Piggin
2009-06-15  6:52             ` Nick Piggin
2009-06-15  6:52               ` Nick Piggin
2009-06-16 20:27               ` Russ Anderson
2009-06-16 20:27                 ` Russ Anderson
2009-06-17  7:51                 ` Nick Piggin
2009-06-17  7:51                   ` Nick Piggin
2009-06-12 15:45         ` Ingo Molnar
2009-06-12 15:45           ` Ingo Molnar
2009-06-12 16:12           ` Linus Torvalds
2009-06-12 16:12             ` Linus Torvalds
2009-06-11 14:22 ` [PATCH 2/5] HWPOISON: fix tasklist_lock/anon_vma locking order Wu Fengguang
2009-06-11 14:22   ` Wu Fengguang
2009-06-11 15:59   ` Rik van Riel
2009-06-11 15:59     ` Rik van Riel
2009-06-12 10:03   ` Andi Kleen
2009-06-12 10:03     ` Andi Kleen
2009-06-12 10:07     ` Nick Piggin
2009-06-12 10:07       ` Nick Piggin
2009-06-12 13:27     ` Wu Fengguang
2009-06-12 13:27       ` Wu Fengguang
2009-06-12 14:04       ` Wu Fengguang
2009-06-12 14:04         ` Wu Fengguang
2009-06-11 14:22 ` [PATCH 3/5] HWPOISON: remove early kill option for now Wu Fengguang
2009-06-11 14:22   ` Wu Fengguang
2009-06-11 16:06   ` Rik van Riel
2009-06-11 16:06     ` Rik van Riel
2009-06-12  9:59   ` Andi Kleen
2009-06-12  9:59     ` Andi Kleen
2009-06-11 14:22 ` [PATCH 4/5] HWPOISON: report sticky EIO for poisoned file Wu Fengguang
2009-06-11 14:22   ` Wu Fengguang
2009-06-11 16:31   ` Rik van Riel
2009-06-11 16:31     ` Rik van Riel
2009-06-12 10:07   ` Andi Kleen
2009-06-12 10:07     ` Andi Kleen
2009-06-12 13:41     ` Wu Fengguang
2009-06-12 13:41       ` Wu Fengguang
2009-06-11 14:22 ` [PATCH 5/5] HWPOISON: use the safer invalidate page for possible metadata pages Wu Fengguang
2009-06-11 14:22   ` Wu Fengguang
2009-06-11 16:36   ` Rik van Riel
2009-06-11 16:36     ` Rik van Riel
2009-06-12 10:56 ` [PATCH 0/5] [RFC] HWPOISON incremental fixes Andi Kleen
2009-06-12 10:56   ` Andi Kleen
2009-06-12 13:59   ` Wu Fengguang
2009-06-12 13:59     ` Wu Fengguang

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=20090611144430.414445947@intel.com \
    --to=fengguang.wu@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=npiggin@suse.de \
    /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.