From: "Michael S. Tsirkin" <mst@redhat.com>
To: Or Gerlitz <ogerlitz@voltaire.com>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCHv3 0/2] vhost: a kernel-level virtio server
Date: Thu, 20 Aug 2009 20:03:38 +0300 [thread overview]
Message-ID: <20090820170338.GA9014@redhat.com> (raw)
In-Reply-To: <4A8D50EF.6010208@voltaire.com>
On Thu, Aug 20, 2009 at 04:34:39PM +0300, Or Gerlitz wrote:
> Michael S. Tsirkin wrote:
>> Yes. master
> okay, will get testing this later next week. Any chance you can provide
> some packet-per-second numbers (netperf udp stream with small packets)?
>
> Or.
If you do, maybe you should apply the following patch on top
(seems to save 2 atomics in about 50% of cases for me).
---
mm: reduce atomic use on use_mm fast path
When mm switched to matches that of active mm, we don't need to
increment and then drop the mm count. Making that conditional reduces
contention on that cache line on SMP systems.
Acked-by: Andrea Arcangeli <aarcange@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
diff --git a/mm/mmu_context.c b/mm/mmu_context.c
index 9989c2f..0777654 100644
--- a/mm/mmu_context.c
+++ b/mm/mmu_context.c
@@ -27,13 +27,16 @@ void use_mm(struct mm_struct *mm)
task_lock(tsk);
active_mm = tsk->active_mm;
- atomic_inc(&mm->mm_count);
+ if (active_mm != mm) {
+ atomic_inc(&mm->mm_count);
+ tsk->active_mm = mm;
+ }
tsk->mm = mm;
- tsk->active_mm = mm;
switch_mm(active_mm, mm, tsk);
task_unlock(tsk);
- mmdrop(active_mm);
+ if (active_mm != mm)
+ mmdrop(active_mm);
}
EXPORT_SYMBOL_GPL(use_mm);
prev parent reply other threads:[~2009-08-20 17:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-13 18:27 [PATCHv3 0/2] vhost: a kernel-level virtio server Michael S. Tsirkin
2009-08-19 8:16 ` Or Gerlitz
2009-08-19 13:10 ` Michael S. Tsirkin
2009-08-19 13:44 ` Or Gerlitz
2009-08-19 13:45 ` Michael S. Tsirkin
2009-08-20 13:34 ` Or Gerlitz
2009-08-20 13:39 ` Michael S. Tsirkin
2009-08-20 17:03 ` Michael S. Tsirkin [this message]
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=20090820170338.GA9014@redhat.com \
--to=mst@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=ogerlitz@voltaire.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).