Revert "loongarch/cpu: Switch to arch_cpu_finalize_init()"
This reverts commit08e86d42e2
which is commit 9841c423164787feb8f1442f922b7d80a70c82f1 upstream. As Gunter reports: Building loongarch:defconfig ... failed -------------- Error log: <stdin>:569:2: warning: #warning syscall fstat not implemented [-Wcpp] arch/loongarch/kernel/setup.c: In function 'arch_cpu_finalize_init': arch/loongarch/kernel/setup.c:86:9: error: implicit declaration of function 'alternative_instructions' Actually introduced in v6.1.44 with commit08e86d42e2
("loongarch/cpu: Switch to arch_cpu_finalize_init()"). Alternative instruction support was only introduced for loongarch in v6.2 with commit 19e5eb15b00c ("LoongArch: Add alternative runtime patching mechanism"). So revert it from 6.1.y. Reported-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/fcd7b764-9047-22ba-a040-41b6ff99959c@roeck-us.net Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Daniel Sneddon <daniel.sneddon@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
65383fe060
commit
ed2f8701fb
@ -10,7 +10,6 @@ config LOONGARCH
|
|||||||
select ARCH_ENABLE_MEMORY_HOTPLUG
|
select ARCH_ENABLE_MEMORY_HOTPLUG
|
||||||
select ARCH_ENABLE_MEMORY_HOTREMOVE
|
select ARCH_ENABLE_MEMORY_HOTREMOVE
|
||||||
select ARCH_HAS_ACPI_TABLE_UPGRADE if ACPI
|
select ARCH_HAS_ACPI_TABLE_UPGRADE if ACPI
|
||||||
select ARCH_HAS_CPU_FINALIZE_INIT
|
|
||||||
select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
|
select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
|
||||||
select ARCH_HAS_PTE_SPECIAL
|
select ARCH_HAS_PTE_SPECIAL
|
||||||
select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
|
select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
*/
|
*/
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/acpi.h>
|
#include <linux/acpi.h>
|
||||||
#include <linux/cpu.h>
|
|
||||||
#include <linux/dmi.h>
|
#include <linux/dmi.h>
|
||||||
#include <linux/efi.h>
|
#include <linux/efi.h>
|
||||||
#include <linux/export.h>
|
#include <linux/export.h>
|
||||||
@ -81,11 +80,6 @@ const char *get_system_type(void)
|
|||||||
return "generic-loongson-machine";
|
return "generic-loongson-machine";
|
||||||
}
|
}
|
||||||
|
|
||||||
void __init arch_cpu_finalize_init(void)
|
|
||||||
{
|
|
||||||
alternative_instructions();
|
|
||||||
}
|
|
||||||
|
|
||||||
static const char *dmi_string_parse(const struct dmi_header *dm, u8 s)
|
static const char *dmi_string_parse(const struct dmi_header *dm, u8 s)
|
||||||
{
|
{
|
||||||
const u8 *bp = ((u8 *) dm) + dm->length;
|
const u8 *bp = ((u8 *) dm) + dm->length;
|
||||||
|
Loading…
Reference in New Issue
Block a user