From: Minchan Kim <minchan@kernel.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: kernel-team <kernel-team@lge.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Rik van Riel <riel@redhat.com>, Minchan Kim <minchan@kernel.org>
Subject: [PATCH 0/3] fix several TLB batch races
Date: Fri, 28 Jul 2017 15:41:49 +0900 [thread overview]
Message-ID: <1501224112-23656-1-git-send-email-minchan@kernel.org> (raw)
Nadav and Mel founded several subtle races caused by TLB batching.
This patchset aims for solving thoses problems using embedding
[set|clear]_tlb_flush_pending to TLB batching API.
With that, places to know TLB flush pending catch it up by
using mm_tlb_flush_pending.
Each patch includes detailed description.
This patchset is based on v4.13-rc2-mmots-2017-07-26-16-16 +
revert: "mm: prevent racy access to tlb_flush_pending" +
adding: "[PATCH v3 0/2] mm: fixes of tlb_flush_pending races".
Minchan Kim (3):
mm: make tlb_flush_pending global
mm: fix MADV_[FREE|DONTNEED] TLB flush miss problem
mm: fix KSM data corruption
arch/arm/include/asm/tlb.h | 15 ++++++++++++++-
arch/ia64/include/asm/tlb.h | 12 ++++++++++++
arch/s390/include/asm/tlb.h | 15 +++++++++++++++
arch/sh/include/asm/tlb.h | 4 +++-
arch/um/include/asm/tlb.h | 8 ++++++++
fs/proc/task_mmu.c | 4 +++-
include/linux/mm_types.h | 22 +++++-----------------
kernel/fork.c | 2 --
mm/debug.c | 2 --
mm/ksm.c | 3 ++-
mm/memory.c | 24 ++++++++++++------------
11 files changed, 74 insertions(+), 37 deletions(-)
--
2.7.4
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
WARNING: multiple messages have this Message-ID (diff)
From: Minchan Kim <minchan@kernel.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: kernel-team <kernel-team@lge.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Rik van Riel <riel@redhat.com>, Minchan Kim <minchan@kernel.org>
Subject: [PATCH 0/3] fix several TLB batch races
Date: Fri, 28 Jul 2017 15:41:49 +0900 [thread overview]
Message-ID: <1501224112-23656-1-git-send-email-minchan@kernel.org> (raw)
Nadav and Mel founded several subtle races caused by TLB batching.
This patchset aims for solving thoses problems using embedding
[set|clear]_tlb_flush_pending to TLB batching API.
With that, places to know TLB flush pending catch it up by
using mm_tlb_flush_pending.
Each patch includes detailed description.
This patchset is based on v4.13-rc2-mmots-2017-07-26-16-16 +
revert: "mm: prevent racy access to tlb_flush_pending" +
adding: "[PATCH v3 0/2] mm: fixes of tlb_flush_pending races".
Minchan Kim (3):
mm: make tlb_flush_pending global
mm: fix MADV_[FREE|DONTNEED] TLB flush miss problem
mm: fix KSM data corruption
arch/arm/include/asm/tlb.h | 15 ++++++++++++++-
arch/ia64/include/asm/tlb.h | 12 ++++++++++++
arch/s390/include/asm/tlb.h | 15 +++++++++++++++
arch/sh/include/asm/tlb.h | 4 +++-
arch/um/include/asm/tlb.h | 8 ++++++++
fs/proc/task_mmu.c | 4 +++-
include/linux/mm_types.h | 22 +++++-----------------
kernel/fork.c | 2 --
mm/debug.c | 2 --
mm/ksm.c | 3 ++-
mm/memory.c | 24 ++++++++++++------------
11 files changed, 74 insertions(+), 37 deletions(-)
--
2.7.4
next reply other threads:[~2017-07-28 6:42 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-28 6:41 Minchan Kim [this message]
2017-07-28 6:41 ` [PATCH 0/3] fix several TLB batch races Minchan Kim
2017-07-28 6:41 ` [PATCH 1/3] mm: make tlb_flush_pending global Minchan Kim
2017-07-28 6:41 ` Minchan Kim
2017-07-28 6:41 ` [PATCH 2/3] mm: fix MADV_[FREE|DONTNEED] TLB flush miss problem Minchan Kim
2017-07-28 6:41 ` Minchan Kim
2017-07-28 6:41 ` Minchan Kim
2017-07-28 6:41 ` Minchan Kim
2017-07-28 8:46 ` Mel Gorman
2017-07-28 8:46 ` Mel Gorman
2017-07-28 8:46 ` Mel Gorman
2017-07-28 8:46 ` Mel Gorman
2017-07-28 15:12 ` Minchan Kim
2017-07-28 15:12 ` Minchan Kim
2017-07-28 15:12 ` Minchan Kim
2017-07-28 15:12 ` Minchan Kim
2017-07-28 6:41 ` [PATCH 3/3] mm: fix KSM data corruption Minchan Kim
2017-07-28 6:41 ` Minchan Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1501224112-23656-1-git-send-email-minchan@kernel.org \
--to=minchan@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=kernel-team@lge.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=riel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.