The patch titled uml: add __raw_writeq definition has been added to the -mm tree. Its filename is uml-add-__raw_writeq-definition.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: uml: add __raw_writeq definition From: Jeff Dike <jdike@xxxxxxxxxxx> The x86_64 build requires a definition for __raw_writeq. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/asm-um/io.h | 5 +++++ 1 files changed, 5 insertions(+) diff -puN include/asm-um/io.h~uml-add-__raw_writeq-definition include/asm-um/io.h --- a/include/asm-um/io.h~uml-add-__raw_writeq-definition +++ a/include/asm-um/io.h @@ -45,8 +45,13 @@ static inline void writel(unsigned int b { *(volatile unsigned int __force *) addr = b; } +static inline void writeq(unsigned int b, volatile void __iomem *addr) +{ + *(volatile unsigned long long __force *) addr = b; +} #define __raw_writeb writeb #define __raw_writew writew #define __raw_writel writel +#define __raw_writeq writeq #endif _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are origin.patch fix-the-init_env_arg_limit-dependencies.patch uml-fix-proc-mounts-parsing-boundary-condition.patch uml-fix-off-by-one-bug-in-vm-file-creation.patch uml-remove-pte_mkexec.patch uml-unregister-useless-console-when-its-not-needed.patch uml-add-locking-to-xtime-accesses.patch uml-remove-unneeded-time-definitions.patch uml-remove-stray-file.patch uml-fix-biarch-gcc-build-on-x86_64.patch uml-add-__raw_writeq-definition.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html