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 git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6

* git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6:
sparc64: Fix section attribute warnings.
sparc64: Fix SET_PERSONALITY to not clip bits outside of PER_MASK.

+5 -4
+3 -2
arch/sparc/include/asm/elf_64.h
··· 208 208 else \ 209 209 clear_thread_flag(TIF_ABI_PENDING); \ 210 210 /* flush_thread will update pgd cache */ \ 211 - if (current->personality != PER_LINUX32) \ 212 - set_personality(PER_LINUX); \ 211 + if (personality(current->personality) != PER_LINUX32) \ 212 + set_personality(PER_LINUX | \ 213 + (current->personality & (~PER_MASK))); \ 213 214 } while (0) 214 215 215 216 #endif /* !(__ASM_SPARC64_ELF_H) */
+1 -1
arch/sparc/lib/csum_copy_from_user.S
··· 5 5 6 6 #define EX_LD(x) \ 7 7 98: x; \ 8 - .section .fixup; \ 8 + .section .fixup, "ax"; \ 9 9 .align 4; \ 10 10 99: retl; \ 11 11 mov -1, %o0; \
+1 -1
arch/sparc/lib/csum_copy_to_user.S
··· 5 5 6 6 #define EX_ST(x) \ 7 7 98: x; \ 8 - .section .fixup; \ 8 + .section .fixup,"ax"; \ 9 9 .align 4; \ 10 10 99: retl; \ 11 11 mov -1, %o0; \