From: Chao Gao <chao.gao@intel.com>
To: xen-devel@lists.xen.org
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Jan Beulich <jbeulich@suse.com>, Chao Gao <chao.gao@intel.com>
Subject: [PATCH v4 2/4] x86/vcpu: track hvm vcpu number on the system
Date: Fri, 7 Jul 2017 14:48:58 +0800 [thread overview]
Message-ID: <1499410140-8003-3-git-send-email-chao.gao@intel.com> (raw)
In-Reply-To: <1499410140-8003-1-git-send-email-chao.gao@intel.com>
This number is used to calculate the average vcpus per pcpu ratio.
Signed-off-by: Chao Gao <chao.gao@intel.com>
---
v4:
- move the place we increase/decrease the hvm vcpu number to
hvm_vcpu_{initialise, destory}
---
xen/arch/x86/hvm/hvm.c | 6 ++++++
xen/include/asm-x86/hvm/hvm.h | 3 +++
2 files changed, 9 insertions(+)
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index 3ed6ec4..6a510b3 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -109,6 +109,9 @@ static const char __initconst warning_hvm_fep[] =
static bool_t __initdata opt_altp2m_enabled = 0;
boolean_param("altp2m", opt_altp2m_enabled);
+/* Total number of HVM vCPUs on this system */
+atomic_t num_hvm_vcpus;
+
static int cpu_callback(
struct notifier_block *nfb, unsigned long action, void *hcpu)
{
@@ -1512,6 +1515,7 @@ int hvm_vcpu_initialise(struct vcpu *v)
hvm_update_guest_vendor(v);
+ atomic_inc(&num_hvm_vcpus);
return 0;
fail6:
@@ -1530,6 +1534,8 @@ int hvm_vcpu_initialise(struct vcpu *v)
void hvm_vcpu_destroy(struct vcpu *v)
{
+ atomic_dec(&num_hvm_vcpus);
+
viridian_vcpu_deinit(v);
hvm_all_ioreq_servers_remove_vcpu(v->domain, v);
diff --git a/xen/include/asm-x86/hvm/hvm.h b/xen/include/asm-x86/hvm/hvm.h
index b687e03..c51bd9f 100644
--- a/xen/include/asm-x86/hvm/hvm.h
+++ b/xen/include/asm-x86/hvm/hvm.h
@@ -25,6 +25,7 @@
#include <asm/hvm/asid.h>
#include <public/domctl.h>
#include <public/hvm/save.h>
+#include <xen/atomic.h>
#include <xen/mm.h>
#ifdef CONFIG_HVM_FEP
@@ -233,6 +234,8 @@ extern bool_t hvm_enabled;
extern bool_t cpu_has_lmsl;
extern s8 hvm_port80_allowed;
+extern atomic_t num_hvm_vcpus;
+
extern const struct hvm_function_table *start_svm(void);
extern const struct hvm_function_table *start_vmx(void);
--
1.8.3.1
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2017-07-07 6:48 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-07 6:48 [PATCH v4 0/4] mitigate the per-pCPU blocking list may be too long Chao Gao
2017-07-07 6:48 ` [PATCH v4 1/4] VT-d PI: track the vcpu number on pi blocking list Chao Gao
2017-07-07 15:41 ` Jan Beulich
2017-07-10 0:50 ` Chao Gao
2017-07-21 15:04 ` George Dunlap
2017-07-07 6:48 ` Chao Gao [this message]
2017-07-07 15:42 ` [PATCH v4 2/4] x86/vcpu: track hvm vcpu number on the system Jan Beulich
2017-07-07 6:48 ` [PATCH v4 3/4] VT-d PI: restrict the vcpu number on a given pcpu Chao Gao
2017-07-07 15:57 ` Jan Beulich
2017-07-10 1:17 ` Chao Gao
2017-07-10 9:36 ` Jan Beulich
2017-07-10 11:42 ` Chao Gao
2017-07-21 15:43 ` George Dunlap
2017-07-07 6:49 ` [PATCH v4 4/4] Xentrace: add support for HVM's PI blocking list operation Chao Gao
2017-07-07 15:37 ` Jan Beulich
2017-07-10 0:45 ` Chao Gao
2017-07-21 16:26 ` George Dunlap
2017-07-28 8:23 ` Chao Gao
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=1499410140-8003-3-git-send-email-chao.gao@intel.com \
--to=chao.gao@intel.com \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.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 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).