arch/powerpc/kvm/book3s_exports.c

Source file repositories/reference/linux-study-clean/arch/powerpc/kvm/book3s_exports.c

File Facts

System
Linux kernel
Corpus path
arch/powerpc/kvm/book3s_exports.c
Extension
.c
Size
401 bytes
Lines
20
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: exported/initcall integration point
Status
integration implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0-only
/*
 *
 * Copyright SUSE Linux Products GmbH 2009
 *
 * Authors: Alexander Graf <agraf@suse.de>
 */

#include <linux/export.h>
#include <asm/kvm_ppc.h>
#include <asm/kvm_book3s.h>

#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
EXPORT_SYMBOL_GPL(kvmppc_hv_entry_trampoline);
#endif
#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
EXPORT_SYMBOL_GPL(kvmppc_entry_trampoline);
#endif

Annotation

Implementation Notes