Commit 65039a31 authored by Linus Torvalds's avatar Linus Torvalds

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.
parents 6e429101 6373fffc
...@@ -208,8 +208,9 @@ do { unsigned long new_flags = current_thread_info()->flags; \ ...@@ -208,8 +208,9 @@ do { unsigned long new_flags = current_thread_info()->flags; \
else \ else \
clear_thread_flag(TIF_ABI_PENDING); \ clear_thread_flag(TIF_ABI_PENDING); \
/* flush_thread will update pgd cache */ \ /* flush_thread will update pgd cache */ \
if (current->personality != PER_LINUX32) \ if (personality(current->personality) != PER_LINUX32) \
set_personality(PER_LINUX); \ set_personality(PER_LINUX | \
(current->personality & (~PER_MASK))); \
} while (0) } while (0)
#endif /* !(__ASM_SPARC64_ELF_H) */ #endif /* !(__ASM_SPARC64_ELF_H) */
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#define EX_LD(x) \ #define EX_LD(x) \
98: x; \ 98: x; \
.section .fixup; \ .section .fixup, "ax"; \
.align 4; \ .align 4; \
99: retl; \ 99: retl; \
mov -1, %o0; \ mov -1, %o0; \
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#define EX_ST(x) \ #define EX_ST(x) \
98: x; \ 98: x; \
.section .fixup; \ .section .fixup,"ax"; \
.align 4; \ .align 4; \
99: retl; \ 99: retl; \
mov -1, %o0; \ mov -1, %o0; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment