[RFC PATCH v2 08/10] x86/virt/tdx: Remove tdx_global_metadata.c
From: Chao Gao
Date: Fri Sep 18 2026 - 10:23:33 EST
tdx_global_metadata.c held the script-generated metadata readers,
deliberately kept in their own file so that generated code stayed separate
from hand-written code. It cannot be compiled on its own because it lacks
the low-level SEAMCALL wrappers, so tdx.c #includes it directly.
Including one C file into another is unusual, and now that the readers are
maintained by hand there is nothing left to isolate. get_tdx_sys_info() is
the only function still in the file.
Move get_tdx_sys_info() verbatim into tdx.c and delete
tdx_global_metadata.c along with its #include.
AI was used under supervision to review code and workshop logs.
Signed-off-by: Chao Gao <chao.gao@xxxxxxxxx>
---
arch/x86/virt/vmx/tdx/tdx.c | 28 +++++++++++++++-
arch/x86/virt/vmx/tdx/tdx_global_metadata.c | 36 ---------------------
2 files changed, 27 insertions(+), 37 deletions(-)
delete mode 100644 arch/x86/virt/vmx/tdx/tdx_global_metadata.c
diff --git a/arch/x86/virt/vmx/tdx/tdx.c b/arch/x86/virt/vmx/tdx/tdx.c
index 571c3bb50532..9f9f2ef80f55 100644
--- a/arch/x86/virt/vmx/tdx/tdx.c
+++ b/arch/x86/virt/vmx/tdx/tdx.c
@@ -562,7 +562,33 @@ static __init int get_tdx_sys_info_td_conf(struct tdx_sys_info_td_conf *td_conf)
return 0;
}
-#include "tdx_global_metadata.c"
+static __init int get_tdx_sys_info(struct tdx_sys_info *sysinfo)
+{
+ int ret = 0;
+
+ ret = ret ?: get_tdx_sys_info_version(&sysinfo->version);
+
+ pr_info("Module version: " TDX_VERSION_FMT "\n",
+ sysinfo->version.major_version,
+ sysinfo->version.minor_version,
+ sysinfo->version.update_version);
+
+ ret = ret ?: get_tdx_sys_info_features(&sysinfo->features);
+ ret = ret ?: get_tdx_sys_info_tdmr(&sysinfo->tdmr);
+ ret = ret ?: get_tdx_sys_info_td_ctrl(&sysinfo->td_ctrl);
+ ret = ret ?: get_tdx_sys_info_td_conf(&sysinfo->td_conf);
+
+ /*
+ * The kernel supports using TDX without DPAMT, so
+ * avoid reporting failure if it's not supported. Don't
+ * try to support buggy TDX modules that advertise
+ * DPAMT but don't expose the metadata.
+ */
+ if (!ret && tdx_supports_dynamic_pamt(sysinfo))
+ ret = get_tdx_sys_info_tdmr_dpamt(&sysinfo->tdmr);
+
+ return ret;
+}
static __init int check_features(struct tdx_sys_info *sysinfo)
{
diff --git a/arch/x86/virt/vmx/tdx/tdx_global_metadata.c b/arch/x86/virt/vmx/tdx/tdx_global_metadata.c
deleted file mode 100644
index 779c26e68f02..000000000000
--- a/arch/x86/virt/vmx/tdx/tdx_global_metadata.c
+++ /dev/null
@@ -1,36 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/*
- * Functions to read TDX global metadata.
- *
- * This file doesn't compile on its own as it lacks of inclusion
- * of SEAMCALL wrapper primitive which reads global metadata.
- * Include this file to other C file instead.
- */
-
-static __init int get_tdx_sys_info(struct tdx_sys_info *sysinfo)
-{
- int ret = 0;
-
- ret = ret ?: get_tdx_sys_info_version(&sysinfo->version);
-
- pr_info("Module version: " TDX_VERSION_FMT "\n",
- sysinfo->version.major_version,
- sysinfo->version.minor_version,
- sysinfo->version.update_version);
-
- ret = ret ?: get_tdx_sys_info_features(&sysinfo->features);
- ret = ret ?: get_tdx_sys_info_tdmr(&sysinfo->tdmr);
- ret = ret ?: get_tdx_sys_info_td_ctrl(&sysinfo->td_ctrl);
- ret = ret ?: get_tdx_sys_info_td_conf(&sysinfo->td_conf);
-
- /*
- * The kernel supports using TDX without DPAMT, so
- * avoid reporting failure if it's not supported. Don't
- * try to support buggy TDX modules that advertise
- * DPAMT but don't expose the metadata.
- */
- if (!ret && tdx_supports_dynamic_pamt(sysinfo))
- ret = get_tdx_sys_info_tdmr_dpamt(&sysinfo->tdmr);
-
- return ret;
-}
--
2.52.0