* MIPS asm/mman.h and MADV_HWPOISON
@ 2009-11-25 23:57 Joseph S. Myers
2009-11-26 18:30 ` Ralf Baechle
0 siblings, 1 reply; 2+ messages in thread
From: Joseph S. Myers @ 2009-11-25 23:57 UTC (permalink / raw)
To: linux-mips
In the course of updating glibc ports's bits/mman.h files for new MADV_*
definitions, I noticed that arch/mips/include/asm/mman.h does not define
MADV_HWPOISON, although architectures using asm-generic/mman.h get that
definition automatically. Should I take it that this is an oversight and
that a definition of MADV_HWPOISON will be added with value 100, or is
there some reason for it not to be defined for MIPS or for it to have a
different value?
--
Joseph S. Myers
joseph@codesourcery.com
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: MIPS asm/mman.h and MADV_HWPOISON
2009-11-25 23:57 MIPS asm/mman.h and MADV_HWPOISON Joseph S. Myers
@ 2009-11-26 18:30 ` Ralf Baechle
0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2009-11-26 18:30 UTC (permalink / raw)
To: Joseph S. Myers; +Cc: linux-mips
On Wed, Nov 25, 2009 at 11:57:07PM +0000, Joseph S. Myers wrote:
> In the course of updating glibc ports's bits/mman.h files for new MADV_*
> definitions, I noticed that arch/mips/include/asm/mman.h does not define
> MADV_HWPOISON, although architectures using asm-generic/mman.h get that
> definition automatically. Should I take it that this is an oversight and
> that a definition of MADV_HWPOISON will be added with value 100, or is
> there some reason for it not to be defined for MIPS or for it to have a
> different value?
Just an omission. Thanks for reporting. I've just checked in below
patch.
Ralf
From: Ralf Baechle <ralf@linux-mips.org>
MIPS: Add missing definition for MADV_HWPOISON.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/arch/mips/include/asm/mman.h b/arch/mips/include/asm/mman.h
index a2250f3..c892bfb 100644
--- a/arch/mips/include/asm/mman.h
+++ b/arch/mips/include/asm/mman.h
@@ -75,6 +75,7 @@
#define MADV_MERGEABLE 12 /* KSM may merge identical pages */
#define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */
+#define MADV_HWPOISON 100 /* poison a page for testing */
/* compatibility flags */
#define MAP_FILE 0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-11-26 18:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-25 23:57 MIPS asm/mman.h and MADV_HWPOISON Joseph S. Myers
2009-11-26 18:30 ` Ralf Baechle
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.