OSDN Git Service

futex: Fix futex lock the wrong page
authorZhangXiaoxu <zhangxiaoxu5@huawei.com>
Wed, 12 Jun 2019 01:54:25 +0000 (09:54 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 Jun 2019 06:18:22 +0000 (08:18 +0200)
commitcd23996afa1441a2b658c33399e644a71025bdd5
treebdb54dd62fd695517e50046cc25f0f0ecec0839c
parent38fbd5c2d5721f6f0a40d8bf6e58e9a05df56c7e
futex: Fix futex lock the wrong page

The upstram commit 65d8fc777f6d ("futex: Remove requirement
for lock_page() in get_futex_key()") use variable 'page' as
the page head, when merge it to stable branch, the variable
`page_head` is page head.

In the stable branch, the variable `page` not means the page
head, when lock the page head, we should lock 'page_head',
rather than 'page'.

It maybe lead a hung task problem.

Signed-off-by: ZhangXiaoxu <zhangxiaoxu5@huawei.com>
Cc: stable@vger.kernel.org
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/futex.c