[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 01/19] xen: introduce CONFIG_SYSCTL
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Penny Zheng <Penny.Zheng@xxxxxxx>
- Date: Wed, 12 Mar 2025 12:06:14 +0800
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=QbN9hLSoIYbmj6b7CVezgOjL65vV44FxolcdmjDHBPU=; b=Yqabbb3ZVXV+y2DewWh+AEZGZQsB/qZr/zLPhExay+lrvrv+8xnUum/4tXElUz2FUKLG5oK+pPSFs8fRotKdWMh13cSj5q0Dn3V/h+CyxqynmHdQT7ZJiyz2LOmW4f+LxGDsLcQ+2Y3IJep2lupJJU4c6pM8yxU4KLXENbOEZf9/XEGCZkaKLWwdyTbqkg8LfjNHe6sN09bWEjYt1Z04Y0miXPCJj9+ikSvx/gmg+b+fgG2+GZolLcPrfw0y7KYcahOFk0e1K8VvG8VeRrJvtzS4Lo1EvjhhgiVC3+5UfiZla74/ga/UEoErwbzWBHWbsiLe3hkv1ZrdiKbsM0G5nw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=IzHAZFRS4Em+KPaYUrN9V4a9ZznKRZLpLp6NAvEa8+QdIHU/J+IsriCReN50BYAbHb5onVzfBRh8pRdwDr07u78AoL+kot9kYUoiRBbMSSATkwvxBdyfAsay14j6Jeo6mm+y4VA9jYja3NxF73+lHf21rsW/klRk0nlQj3HIPL08ssRQqliroAHe5W/Jm8QHLoVuK4pxCUFOkaAltrmctlYyF0IMp8hHDJEhiv4COl/KbwIWLhKPWHnz+LdSXCy6x0UlylobHqK3PBk9RO5QTW8c1cAEvd0aU7GgV/0tL91GKWnslm/cWZ7teVuqaVR3ZIQ6KojiaCncdqFkcGDVWA==
- Cc: <ray.huang@xxxxxxx>, Stefano Stabellini <stefano.stabellini@xxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Julien Grall <julien@xxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, "Stefano Stabellini" <sstabellini@xxxxxxxxxx>, Sergiy Kibrik <Sergiy_Kibrik@xxxxxxxx>, Penny Zheng <Penny.Zheng@xxxxxxx>
- Delivery-date: Wed, 12 Mar 2025 04:07:05 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
From: Stefano Stabellini <stefano.stabellini@xxxxxxx>
Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxx>
Signed-off-by: Sergiy Kibrik <Sergiy_Kibrik@xxxxxxxx>
Signed-off-by: Penny Zheng <Penny.Zheng@xxxxxxx>
---
xen/common/Kconfig | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/xen/common/Kconfig b/xen/common/Kconfig
index 6166327f4d..72e1d7ea97 100644
--- a/xen/common/Kconfig
+++ b/xen/common/Kconfig
@@ -519,6 +519,15 @@ config TRACEBUFFER
to be collected at run time for debugging or performance analysis.
Memory and execution overhead when not active is minimal.
+menu "Supported hypercall interfaces"
+ visible if EXPERT
+
+config SYSCTL
+ bool "Enable sysctl hypercall"
+ depends on !PV_SHIM_EXCLUSIVE
+ default y
+endmenu
+
config LLC_COLORING
bool "Last Level Cache (LLC) coloring" if EXPERT
depends on HAS_LLC_COLORING
--
2.34.1
|