All of lore.kernel.org
 help / color / mirror / Atom feed
* arch/arm64/kernel/mte.c:121:15: error: 'mte_enable_kernel_sync' undeclared here (not in a function); did you mean 'mte_enable_kernel'?
@ 2021-02-02 10:09 ` Anders Roxell
  0 siblings, 0 replies; 6+ messages in thread
From: Anders Roxell @ 2021-02-02 10:09 UTC (permalink / raw)
  To: Stephen Rothwell, Andrey Konovalov
  Cc: Linux-Next Mailing List, lkft-triage, Catalin Marinas,
	Will Deacon, Linux ARM

Hi,

I've seen this failure on tag next-20210202:
arch/arm64/kernel/mte.c:121:15: error: 'mte_enable_kernel_sync'
undeclared here (not in a function); did you mean 'mte_enable_kernel'?

I think it may be a merge conflict that didn't get resolved correctly?


The below change fixed the issue:

diff --git a/arch/arm64/kernel/mte.c b/arch/arm64/kernel/mte.c
index 275b5d0f38b8..8f5bd1293496 100644
--- a/arch/arm64/kernel/mte.c
+++ b/arch/arm64/kernel/mte.c
@@ -118,7 +118,7 @@ void mte_set_report_once(bool state)
 {
  WRITE_ONCE(report_fault_once, state);
 }
-EXPORT_SYMBOL(mte_enable_kernel_sync);
+EXPORT_SYMBOL(mte_enable_kernel);
 EXPORT_SYMBOL(mte_set_report_once);

 bool mte_report_once(void)


Cheers,
Anders

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-02-02 20:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-02 10:09 arch/arm64/kernel/mte.c:121:15: error: 'mte_enable_kernel_sync' undeclared here (not in a function); did you mean 'mte_enable_kernel'? Anders Roxell
2021-02-02 10:09 ` Anders Roxell
2021-02-02 13:46 ` Andrey Konovalov
2021-02-02 13:46   ` Andrey Konovalov
2021-02-02 20:29   ` Stephen Rothwell
2021-02-02 20:29     ` Stephen Rothwell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.