summaryrefslogtreecommitdiffstats
path: root/kernel/auditsc.c
diff options
context:
space:
mode:
authorAlan Cox2006-01-19 02:44:07 +0100
committerLinus Torvalds2006-01-19 04:20:30 +0100
commit715b49ef2de6fcead0776d9349071670282faf65 (patch)
treed09b77c804aba3b191dc0ceb294387cf730ede4b /kernel/auditsc.c
parent[PATCH] Add pselect/ppoll system calls on i386 (diff)
downloadkernel-qcow2-linux-715b49ef2de6fcead0776d9349071670282faf65.tar.gz
kernel-qcow2-linux-715b49ef2de6fcead0776d9349071670282faf65.tar.xz
kernel-qcow2-linux-715b49ef2de6fcead0776d9349071670282faf65.zip
[PATCH] EDAC: atomic scrub operations
EDAC requires a way to scrub memory if an ECC error is found and the chipset does not do the work automatically. That means rewriting memory locations atomically with respect to all CPUs _and_ bus masters. That means we can't use atomic_add(foo, 0) as it gets optimised for non-SMP This adds a function to include/asm-foo/atomic.h for the platforms currently supported which implements a scrub of a mapped block. It also adjusts a few other files include order where atomic.h is included before types.h as this now causes an error as atomic_scrub uses u32. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r--kernel/auditsc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index d8a68509e729..685c25175d96 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -30,8 +30,8 @@
*/
#include <linux/init.h>
-#include <asm/atomic.h>
#include <asm/types.h>
+#include <asm/atomic.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/mount.h>