diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-10-16 09:39:57 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-10-16 09:40:05 -0400 |
commit | 0b59268285ca6cdc46191f2995bf632088e3e277 (patch) | |
tree | 91f95eeb809c5fe13d0ba5b055e26879f9ec9357 /arch/s390/include/asm/elf.h | |
parent | 04ab591808565f968d4406f6435090ad671ebdab (diff) |
[PATCH] remove unused ibcs2/PER_SVR4 in SET_PERSONALITY
The SET_PERSONALITY macro is always called with a second argument of 0.
Remove the ibcs argument and the various tests to set the PER_SVR4
personality.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/elf.h')
-rw-r--r-- | arch/s390/include/asm/elf.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/s390/include/asm/elf.h b/arch/s390/include/asm/elf.h index 3cad56923815..261785ab5b22 100644 --- a/arch/s390/include/asm/elf.h +++ b/arch/s390/include/asm/elf.h | |||
@@ -166,13 +166,11 @@ extern char elf_platform[]; | |||
166 | #define ELF_PLATFORM (elf_platform) | 166 | #define ELF_PLATFORM (elf_platform) |
167 | 167 | ||
168 | #ifndef __s390x__ | 168 | #ifndef __s390x__ |
169 | #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX) | 169 | #define SET_PERSONALITY(ex) set_personality(PER_LINUX) |
170 | #else /* __s390x__ */ | 170 | #else /* __s390x__ */ |
171 | #define SET_PERSONALITY(ex, ibcs2) \ | 171 | #define SET_PERSONALITY(ex) \ |
172 | do { \ | 172 | do { \ |
173 | if (ibcs2) \ | 173 | if (current->personality != PER_LINUX32) \ |
174 | set_personality(PER_SVR4); \ | ||
175 | else if (current->personality != PER_LINUX32) \ | ||
176 | set_personality(PER_LINUX); \ | 174 | set_personality(PER_LINUX); \ |
177 | if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ | 175 | if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ |
178 | set_thread_flag(TIF_31BIT); \ | 176 | set_thread_flag(TIF_31BIT); \ |