]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc: Fix personality handling in ppc64_personality()
authorJiri Kosina <jkosina@suse.cz>
Mon, 13 Aug 2012 03:18:28 +0000 (03:18 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Fri, 24 Aug 2012 10:26:07 +0000 (20:26 +1000)
commitb309144e48c961a3b10e16d26b2f868f8fdebefc
tree95109ff3cb478eae2e56033b2a52859ca25b9b37
parentafd224983427b19f7308856cc3c5874973f7f10f
powerpc: Fix personality handling in ppc64_personality()

Directly comparing current->personality against PER_LINUX32 doesn't work
in cases when any of the personality flags stored in the top three bytes
are used.

Directly forcefully setting personality to PER_LINUX32 or PER_LINUX
discards any flags stored in the top three bytes

Use personality() macro to compare only PER_MASK bytes and make sure that
we are setting only the bits that should be set, instead of overwriting
the whole value.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/kernel/syscalls.c