making the kernel build with up to date compilers again, see https://bbs.archlinux...
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / x86 / include / asm / edac.h
blobe9b57ecc70c5c99f587ed4a3a44518481109bdbe
1 #ifndef _ASM_X86_EDAC_H
2 #define _ASM_X86_EDAC_H
4 /* ECC atomic, DMA, SMP and interrupt safe scrub function */
6 static inline void atomic_scrub(void *va, u32 size)
8 u32 i, *virt_addr = va;
11 * Very carefully read and write to memory atomically so we
12 * are interrupt, DMA and SMP safe.
14 for (i = 0; i < size / 4; i++, virt_addr++)
15 asm volatile("lock; addl $0, %0"::"m" (*virt_addr));
18 #endif /* _ASM_X86_EDAC_H */