All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ed White <edmund.h.white@intel.com>
To: xen-devel@lists.xen.org
Cc: Ravi Sahita <ravi.sahita@intel.com>,
	Wei Liu <wei.liu2@citrix.com>,
	George Dunlap <george.dunlap@eu.citrix.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>, Tim Deegan <tim@xen.org>,
	Jan Beulich <jbeulich@suse.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	tlengyel@novetta.com, Daniel De Graaf <dgdegra@tycho.nsa.gov>
Subject: [PATCH v4 01/15] common/domain: Helpers to pause a domain while in context
Date: Thu,  9 Jul 2015 17:52:19 -0700	[thread overview]
Message-ID: <1436489553-6300-2-git-send-email-edmund.h.white@intel.com> (raw)
In-Reply-To: <1436489553-6300-1-git-send-email-edmund.h.white@intel.com>

From: Andrew Cooper <andrew.cooper3@citrix.com>

For use on codepaths which would need to use domain_pause() but might be in
the target domain's context.  In the case that the target domain is in
context, all other vcpus are paused.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
 xen/common/domain.c     | 28 ++++++++++++++++++++++++++++
 xen/include/xen/sched.h |  5 +++++
 2 files changed, 33 insertions(+)

diff --git a/xen/common/domain.c b/xen/common/domain.c
index 3bc52e6..1bb24ae 100644
--- a/xen/common/domain.c
+++ b/xen/common/domain.c
@@ -1010,6 +1010,34 @@ int domain_unpause_by_systemcontroller(struct domain *d)
     return 0;
 }
 
+void domain_pause_except_self(struct domain *d)
+{
+    struct vcpu *v, *curr = current;
+
+    if ( curr->domain == d )
+    {
+        for_each_vcpu( d, v )
+            if ( likely(v != curr) )
+                vcpu_pause(v);
+    }
+    else
+        domain_pause(d);
+}
+
+void domain_unpause_except_self(struct domain *d)
+{
+    struct vcpu *v, *curr = current;
+
+    if ( curr->domain == d )
+    {
+        for_each_vcpu( d, v )
+            if ( likely(v != curr) )
+                vcpu_unpause(v);
+    }
+    else
+        domain_unpause(d);
+}
+
 int vcpu_reset(struct vcpu *v)
 {
     struct domain *d = v->domain;
diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h
index b29d9e7..73d3bc8 100644
--- a/xen/include/xen/sched.h
+++ b/xen/include/xen/sched.h
@@ -804,6 +804,11 @@ static inline int domain_pause_by_systemcontroller_nosync(struct domain *d)
 {
     return __domain_pause_by_systemcontroller(d, domain_pause_nosync);
 }
+
+/* domain_pause() but safe against trying to pause current. */
+void domain_pause_except_self(struct domain *d);
+void domain_unpause_except_self(struct domain *d);
+
 void cpu_init(void);
 
 struct scheduler;
-- 
1.9.1

  reply	other threads:[~2015-07-10  0:52 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-10  0:52 [PATCH v4 00/15] Alternate p2m: support multiple copies of host p2m Ed White
2015-07-10  0:52 ` Ed White [this message]
2015-07-10  0:52 ` [PATCH v4 02/15] VMX: VMFUNC and #VE definitions and detection Ed White
2015-07-10  0:52 ` [PATCH v4 03/15] VMX: implement suppress #VE Ed White
2015-07-10  9:09   ` Jan Beulich
2015-07-10 19:22     ` Sahita, Ravi
2015-07-10  0:52 ` [PATCH v4 04/15] x86/HVM: Hardware alternate p2m support detection Ed White
2015-07-10  0:52 ` [PATCH v4 05/15] x86/altp2m: basic data structures and support routines Ed White
2015-07-10  9:13   ` Jan Beulich
2015-07-10  0:52 ` [PATCH v4 06/15] VMX/altp2m: add code to support EPTP switching and #VE Ed White
2015-07-10 16:48   ` George Dunlap
2015-07-10  0:52 ` [PATCH v4 07/15] VMX: add VMFUNC leaf 0 (EPTP switching) to emulator Ed White
2015-07-10  9:30   ` Jan Beulich
2015-07-11 20:01     ` Sahita, Ravi
2015-07-11 21:25       ` Sahita, Ravi
2015-07-13  7:18         ` Jan Beulich
2015-07-13  7:13       ` Jan Beulich
2015-07-10  0:52 ` [PATCH v4 08/15] x86/altp2m: add control of suppress_ve Ed White
2015-07-10  9:39   ` Jan Beulich
2015-07-10 11:11     ` George Dunlap
2015-07-10 11:49       ` Jan Beulich
2015-07-10 11:56         ` George Dunlap
2015-07-10 17:02   ` George Dunlap
2015-07-11 21:29     ` Sahita, Ravi
2015-07-10  0:52 ` [PATCH v4 09/15] x86/altp2m: alternate p2m memory events Ed White
2015-07-10  1:01   ` Lengyel, Tamas
2015-07-10  0:52 ` [PATCH v4 10/15] x86/altp2m: add remaining support routines Ed White
2015-07-10  9:41   ` Jan Beulich
2015-07-10 17:15     ` George Dunlap
2015-07-11 20:20       ` Sahita, Ravi
2015-07-10  0:52 ` [PATCH v4 11/15] x86/altp2m: define and implement alternate p2m HVMOP types Ed White
2015-07-10 10:01   ` Jan Beulich
2015-07-10 22:03     ` Sahita, Ravi
2015-07-13  7:25       ` Jan Beulich
2015-07-13 23:39         ` Sahita, Ravi
2015-07-14  8:58           ` Jan Beulich
2015-07-10  0:52 ` [PATCH v4 12/15] x86/altp2m: Add altp2mhvm HVM domain parameter Ed White
2015-07-10  8:53   ` Wei Liu
2015-07-10 17:32   ` George Dunlap
2015-07-10 22:12     ` Sahita, Ravi
2015-07-14 11:50       ` George Dunlap
2015-07-10  0:52 ` [PATCH v4 13/15] x86/altp2m: XSM hooks for altp2m HVM ops Ed White
2015-07-10  0:52 ` [PATCH v4 14/15] tools/libxc: add support to altp2m hvmops Ed White
2015-07-10  8:46   ` Ian Campbell
2015-07-10  0:52 ` [PATCH v4 15/15] tools/xen-access: altp2m testcases Ed White
2015-07-10  1:35   ` Lengyel, Tamas
2015-07-11  6:06     ` Razvan Cojocaru
2015-07-10  8:50   ` Ian Campbell
2015-07-10  8:55     ` Wei Liu
2015-07-10  9:12       ` Wei Liu
2015-07-10  9:20       ` Ian Campbell

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=1436489553-6300-2-git-send-email-edmund.h.white@intel.com \
    --to=edmund.h.white@intel.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=dgdegra@tycho.nsa.gov \
    --cc=george.dunlap@eu.citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=jbeulich@suse.com \
    --cc=ravi.sahita@intel.com \
    --cc=tim@xen.org \
    --cc=tlengyel@novetta.com \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.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.