Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fixes-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull h8300 and unicore32 architecture fixes from Guenter Roeck:
"Two patches to fix h8300 and unicore32 builds.

unicore32 builds have been broken since v4.6. The fix has been
available in -next since March of this year.

h8300 builds have been broken since the last commit window. The fix
has been available in -next since June of this year"

* tag 'fixes-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
h8300: Add missing include file to asm/io.h
unicore32: mm: Add missing parameter to arch_vma_access_permitted

+3 -1
+2
arch/h8300/include/asm/io.h
··· 3 3 4 4 #ifdef __KERNEL__ 5 5 6 + #include <linux/types.h> 7 + 6 8 /* H8/300 internal I/O functions */ 7 9 8 10 #define __raw_readb __raw_readb
+1 -1
arch/unicore32/include/asm/mmu_context.h
··· 98 98 } 99 99 100 100 static inline bool arch_vma_access_permitted(struct vm_area_struct *vma, 101 - bool write, bool foreign) 101 + bool write, bool execute, bool foreign) 102 102 { 103 103 /* by default, allow everything */ 104 104 return true;