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

Commit a31778a0 authored by Todd Kjos's avatar Todd Kjos Committed by Dmitry Shmidt
Browse files

ANDROID: FIXUP: sched: Fix double-release of spinlock in move_queued_task



BUG: 29519455
Change-Id: I4d1c27a1b4bcbba03d4b175d170cfe1701a90ffd
Signed-off-by: default avatarAndres Oportus <andresoportus@google.com>
parent 64f6fd10
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1841,6 +1841,7 @@ static inline int double_lock_balance(struct rq *this_rq, struct rq *busiest)
static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
	__releases(busiest->lock)
{
	if (this_rq != busiest)
		raw_spin_unlock(&busiest->lock);
	lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
}