[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 2/2] xen/arm32: Remove __init prefixes from funcs that are used within CPU up flow
Hi Oleksandr, On 12/4/18 11:42 AM, Oleksandr Tyshchenko wrote: From: Oleksandr Tyshchenko <oleksandr_tyshchenko@xxxxxxxx> This is a follow-up patch to commit 01a7e8ccef6e7d5718a251ad587567afbe723330 xen/arm: Remove __initdata and __init to enable CPU hotplug Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@xxxxxxxx> Acked-by: Julien Grall <julien.grall@xxxxxxx> Cheers, --- xen/arch/arm/arm32/smpboot.c | 2 +- xen/arch/arm/platform.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/arm/arm32/smpboot.c b/xen/arch/arm/arm32/smpboot.c index 2a77f29..e736866 100644 --- a/xen/arch/arm/arm32/smpboot.c +++ b/xen/arch/arm/arm32/smpboot.c @@ -16,7 +16,7 @@ int __init arch_cpu_init(int cpu, struct dt_device_node *dn) return 0; }-int __init arch_cpu_up(int cpu)+int arch_cpu_up(int cpu) { return platform_cpu_up(cpu); } diff --git a/xen/arch/arm/platform.c b/xen/arch/arm/platform.c index 6989e58..0ba2001 100644 --- a/xen/arch/arm/platform.c +++ b/xen/arch/arm/platform.c @@ -95,7 +95,7 @@ int __init platform_specific_mapping(struct domain *d) }#ifdef CONFIG_ARM_32-int __init platform_cpu_up(int cpu) +int platform_cpu_up(int cpu) { if ( psci_ver ) return call_psci_cpu_on(cpu); -- Julien Grall _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |