All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nadav Amit <namit@vmware.com>
To: linux-mm@kvack.org
Cc: tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
	x86@kernel.org, mgorman@suse.de, sasha.levin@oracle.com,
	akpm@linux-foundation.org, namit@vmware.com, riel@redhat.com,
	dave.hansen@linux.intel.com, luto@kernel.org,
	kirill.shutemov@linux.intel.com, mhocko@suse.com,
	jmarchan@redhat.com, hughd@google.com, vdavydov@virtuozzo.com,
	minchan@kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v2 0/2] Fixes for batched TLB flushes
Date: Sat, 26 Mar 2016 01:25:03 -0700	[thread overview]
Message-ID: <1458980705-121507-1-git-send-email-namit@vmware.com> (raw)

The recent introduction of batched TLB flushes causes accounting problems in
vmstat and misses some tracepoints. In addition, I am afraid it might cause
problems in some platforms (Xen, UV) since it uses non-standard APIs.

v1->v2
* Added second patch to use standard api for invalidations
* cc'ing linux-mm

Nadav Amit (2):
  x86/mm: TLB_REMOTE_SEND_IPI should count pages
  mm/rmap: batched invalidations should use existing api

 arch/x86/include/asm/tlbflush.h |  6 ------
 arch/x86/mm/tlb.c               | 14 ++++++++++----
 mm/rmap.c                       | 28 +++++++---------------------
 3 files changed, 17 insertions(+), 31 deletions(-)

-- 
2.5.0

--
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: Nadav Amit <namit@vmware.com>
To: linux-mm@kvack.org
Cc: tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
	x86@kernel.org, mgorman@suse.de, sasha.levin@oracle.com,
	akpm@linux-foundation.org, namit@vmware.com, riel@redhat.com,
	dave.hansen@linux.intel.com, luto@kernel.org,
	kirill.shutemov@linux.intel.com, mhocko@suse.com,
	jmarchan@redhat.com, hughd@google.com, vdavydov@virtuozzo.com,
	minchan@kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v2 0/2] Fixes for batched TLB flushes
Date: Sat, 26 Mar 2016 01:25:03 -0700	[thread overview]
Message-ID: <1458980705-121507-1-git-send-email-namit@vmware.com> (raw)

The recent introduction of batched TLB flushes causes accounting problems in
vmstat and misses some tracepoints. In addition, I am afraid it might cause
problems in some platforms (Xen, UV) since it uses non-standard APIs.

v1->v2
* Added second patch to use standard api for invalidations
* cc'ing linux-mm

Nadav Amit (2):
  x86/mm: TLB_REMOTE_SEND_IPI should count pages
  mm/rmap: batched invalidations should use existing api

 arch/x86/include/asm/tlbflush.h |  6 ------
 arch/x86/mm/tlb.c               | 14 ++++++++++----
 mm/rmap.c                       | 28 +++++++---------------------
 3 files changed, 17 insertions(+), 31 deletions(-)

-- 
2.5.0

             reply	other threads:[~2016-03-28 16:42 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-26  8:25 Nadav Amit [this message]
2016-03-26  8:25 ` [PATCH v2 0/2] Fixes for batched TLB flushes Nadav Amit
2016-03-26  8:25 ` [PATCH v2 1/2] x86/mm: TLB_REMOTE_SEND_IPI should count pages Nadav Amit
2016-03-26  8:25   ` Nadav Amit
2016-03-28 17:44   ` Nadav Amit
2016-03-28 17:44     ` Nadav Amit
2016-03-28 20:38   ` Andrew Morton
2016-03-28 20:38     ` Andrew Morton
2016-03-28 20:44     ` Nadav Amit
2016-03-28 20:44       ` Nadav Amit
2016-03-26  8:25 ` [PATCH v2 2/2] mm/rmap: batched invalidations should use existing api Nadav Amit
2016-03-26  8:25   ` Nadav Amit

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=1458980705-121507-1-git-send-email-namit@vmware.com \
    --to=namit@vmware.com \
    --cc=akpm@linux-foundation.org \
    --cc=dave.hansen@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=hughd@google.com \
    --cc=jmarchan@redhat.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=luto@kernel.org \
    --cc=mgorman@suse.de \
    --cc=mhocko@suse.com \
    --cc=minchan@kernel.org \
    --cc=mingo@redhat.com \
    --cc=riel@redhat.com \
    --cc=sasha.levin@oracle.com \
    --cc=tglx@linutronix.de \
    --cc=vdavydov@virtuozzo.com \
    --cc=x86@kernel.org \
    /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.