All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] futex: Fix futex lock the wrong page
@ 2019-06-12  1:54 ZhangXiaoxu
  2019-06-12  1:50 ` zhangxiaoxu (A)
  0 siblings, 1 reply; 5+ messages in thread
From: ZhangXiaoxu @ 2019-06-12  1:54 UTC (permalink / raw)
  To: tglx, mingo, peterz, dvhart, linux-kernel, zhangxiaoxu5

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
---
 kernel/futex.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/futex.c b/kernel/futex.c
index ec9df5b..15d850f 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -593,8 +593,8 @@ again:
 		 * applies. If this is really a shmem page then the page lock
 		 * will prevent unexpected transitions.
 		 */
-		lock_page(page);
-		shmem_swizzled = PageSwapCache(page) || page->mapping;
+		lock_page(page_head);
+		shmem_swizzled = PageSwapCache(page_head) || page_head->mapping;
 		unlock_page(page_head);
 		put_page(page_head);
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-06-12 11:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-12  1:54 [PATCH] futex: Fix futex lock the wrong page ZhangXiaoxu
2019-06-12  1:50 ` zhangxiaoxu (A)
2019-06-12  7:15   ` Greg KH
2019-06-12  7:29     ` Thomas Gleixner
2019-06-12 11:01       ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.