tree: git://git.cmpxchg.org/linux-mmotm.git master head: fe8eec967fb5db169b876720a6e0cced026173b6 commit: 397392d03f6a6ac64b5475eed6cb1d200bed5e81 [123/298] mm: change ioremap to set up huge I/O mappings config: ia64-allmodconfig (attached as .config) reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross git checkout 397392d03f6a6ac64b5475eed6cb1d200bed5e81 # save the attached .config to linux build tree make.cross ARCH=ia64 All error/warnings: include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/entry.S:69: Error: `mov' does not fit into bundle -- include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/ivt.S:114: Error: `mov' does not fit into bundle -- include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/mca_asm.S:64: Error: `addl' can't go in slot 3 of MMI template -- include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/relocate_kernel.S:27: Error: `rsm' can't go in slots 2 or 3 of MII template -- include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/head.S:203: Error: `flushrs' can't go in slot 3 of MMI template -- include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/entry.S:175: Error: `adds' does not fit into bundle -- include/asm-generic/pgtable.h: Assembler messages: >> include/asm-generic/pgtable.h:710: Error: Unknown opcode `static inline int pud_set_huge(pud_t*pud,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:712: Error: Unknown opcode `return 0' >> include/asm-generic/pgtable.h:714: Error: Unknown opcode `static inline int pmd_set_huge(pmd_t*pmd,phys_addr_t addr,pgprot_t prot)' >> include/asm-generic/pgtable.h:716: Error: Unknown opcode `return 0' >> arch/ia64/kernel/ivt.S:113: Error: `movl' can't go in slots 2 or 3 of MMI template vim +710 include/asm-generic/pgtable.h 704 #endif 705 706 #ifdef CONFIG_HAVE_ARCH_HUGE_VMAP 707 int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot); 708 int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot); 709 #else /* !CONFIG_HAVE_ARCH_HUGE_VMAP */ > 710 static inline int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot) 711 { > 712 return 0; 713 } > 714 static inline int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot) 715 { > 716 return 0; 717 } 718 #endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */ 719 --- 0-DAY kernel test infrastructure Open Source Technology Center http://lists.01.org/mailman/listinfo/kbuild Intel Corporation