Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3584183 authored by David S. Miller's avatar David S. Miller
Browse files

sparc64: Fix SET_PERSONALITY to not clip bits outside of PER_MASK.

parent 956d039a
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -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) */