Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/x86/boot/startup/exports.h
29269 views
1
2
/*
3
* The symbols below are functions that are implemented by the startup code,
4
* but called at runtime by the SEV code residing in the core kernel.
5
*/
6
PROVIDE(early_set_pages_state = __pi_early_set_pages_state);
7
PROVIDE(early_snp_set_memory_private = __pi_early_snp_set_memory_private);
8
PROVIDE(early_snp_set_memory_shared = __pi_early_snp_set_memory_shared);
9
PROVIDE(get_hv_features = __pi_get_hv_features);
10
PROVIDE(sev_es_terminate = __pi_sev_es_terminate);
11
PROVIDE(snp_cpuid = __pi_snp_cpuid);
12
PROVIDE(snp_cpuid_get_table = __pi_snp_cpuid_get_table);
13
PROVIDE(svsm_issue_call = __pi_svsm_issue_call);
14
PROVIDE(svsm_process_result_codes = __pi_svsm_process_result_codes);
15
16