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

Commit 189b93d0 authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky
Browse files

[S390] switch_to: get rid of prev == next check



schedule() makes sure that prev != next before calling switch_to().
Therefore remove the redundant check.

Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent fdb6d070
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -86,8 +86,6 @@ static inline void restore_access_regs(unsigned int *acrs)
}

#define switch_to(prev,next,last) do {					\
	if (prev == next)						\
		break;							\
	if (prev->mm) {							\
		save_fp_regs(&prev->thread.fp_regs);			\
		save_access_regs(&prev->thread.acrs[0]);		\