/* * Copyright (C) 2025 Intel Corporation. * * SPDX-License-Identifier: BSD-3-Clause * * Authors: * Haicheng Li */ #ifndef RISCV_PERCPU_H #define RISCV_PERCPU_H #include #include struct per_cpu_arch { uint32_t hart_id; } __aligned(PAGE_SIZE); /* per_cpu_region size aligned with PAGE_SIZE */ #endif /* RISCV_PERCPU_H */