]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/kexec: Don't use .machine ppc64 in trampoline_64.S
authorMichael Ellerman <mpe@ellerman.id.au>
Mon, 15 Mar 2021 03:41:59 +0000 (14:41 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 8 Apr 2021 11:17:43 +0000 (21:17 +1000)
commit63e10d2906e1890f5097ba197be35c45e9d95fbe
tree74be2ad070088e6064a2303fbef70a7a1358d8f4
parent3247c5cc28fc0a2f1c72482a720bac42a2ab091d
powerpc/kexec: Don't use .machine ppc64 in trampoline_64.S

As best as I can tell the ".machine" directive in trampoline_64.S is no
longer, or never was, necessary.

It was added in commit ab6f63c87f7d ("powerpc: Add purgatory for
kexec_file_load() implementation."), which created the file based on
the kexec-tools purgatory. It may be/have-been necessary in the
kexec-tools version, but we have a completely different build system,
and we already pass the desired CPU flags, eg:

  gcc ... -m64 -Wl,-a64 -mabi=elfv2 -Wa,-maltivec -Wa,-mpower4 -Wa,-many
  ... arch/powerpc/purgatory/trampoline_64.S

So drop the ".machine" directive and rely on the assembler flags.

Reported-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Reviewed-by: Segher Boessenkool <segher@kernel.crashing.org>
Link: https://lore.kernel.org/r/20210315034159.315675-1-mpe@ellerman.id.au
arch/powerpc/purgatory/trampoline_64.S