The patch titled uml: add __raw_writeq definition has been removed from the -mm tree. Its filename is uml-add-__raw_writeq-definition.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 file 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 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 uml-remove-pte_mkexec.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