Re: [PATCH v7 03/21] RISC-V: Export few kernel symbols

From: Paul Walmsley
Date: Thu Sep 19 2019 - 08:39:39 EST


On Wed, 4 Sep 2019, Anup Patel wrote:

> From: Atish Patra <atish.patra@xxxxxxx>
>
> Export few symbols used by kvm module. Without this, kvm cannot
> be compiled as a module.
>
> Signed-off-by: Atish Patra <atish.patra@xxxxxxx>
> Signed-off-by: Anup Patel <anup.patel@xxxxxxx>
> Acked-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
> Reviewed-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
> Reviewed-by: Alexander Graf <graf@xxxxxxxxxx>

Thanks, have updated this patch to apply and to clarify the patch title
and have queued the following for v5.4-rc.


- Paul

From: Atish Patra <atish.patra@xxxxxxx>
Date: Wed, 4 Sep 2019 16:14:06 +0000
Subject: [PATCH] RISC-V: Export kernel symbols for kvm

Export few symbols used by kvm module. Without this, kvm cannot
be compiled as a module.

Signed-off-by: Atish Patra <atish.patra@xxxxxxx>
Signed-off-by: Anup Patel <anup.patel@xxxxxxx>
Acked-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
Reviewed-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
Reviewed-by: Alexander Graf <graf@xxxxxxxxxx>
[paul.walmsley@xxxxxxxxxx: updated to apply; clarified short patch
description]
Signed-off-by: Paul Walmsley <paul.walmsley@xxxxxxxxxx>
---
arch/riscv/kernel/smp.c | 1 +
arch/riscv/kernel/time.c | 1 +
2 files changed, 2 insertions(+)

diff --git a/arch/riscv/kernel/smp.c b/arch/riscv/kernel/smp.c
index d70e3c0ee983..f849a2480600 100644
--- a/arch/riscv/kernel/smp.c
+++ b/arch/riscv/kernel/smp.c
@@ -210,3 +210,4 @@ void smp_send_reschedule(int cpu)
{
send_ipi_single(cpu, IPI_RESCHEDULE);
}
+EXPORT_SYMBOL_GPL(smp_send_reschedule);
diff --git a/arch/riscv/kernel/time.c b/arch/riscv/kernel/time.c
index 517d2153a933..8a25d1e440ca 100644
--- a/arch/riscv/kernel/time.c
+++ b/arch/riscv/kernel/time.c
@@ -9,6 +9,7 @@
#include <asm/processor.h>

unsigned long riscv_timebase;
+EXPORT_SYMBOL_GPL(riscv_timebase);

void __init time_init(void)
{
--
2.23.0