public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] exit: export make_task_dead()
@ 2022-01-22 17:48 Randy Dunlap
  2022-01-24  9:20 ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2022-01-22 17:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Eric W. Biederman, linux-ia64, Tony Luck,
	kernel test robot

In a config file from "kernel test robot <lkp@intel.com>" for a
different problem, this linker error was exposed when
CONFIG_IA64_MCA_RECOVERY=m.

We could either export make_task_dead() or restrict IA64_MCA_RECOVERY
to a bool Kconfig symbol instead of a tristate symbol, so go with the
EXPORT_SYMBOL() path.

Fixes this build error:

ERROR: modpost: "make_task_dead" [arch/ia64/kernel/mca_recovery.ko] undefined!

Fixes: 0e25498f8cd4 ("exit: Add and use make_task_dead.")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: linux-ia64@vger.kernel.org
Cc: Tony Luck <tony.luck@intel.com>
Cc: kernel test robot <lkp@intel.com>
---
 kernel/exit.c |    1 +
 1 file changed, 1 insertion(+)

--- linux-next-20220121.orig/kernel/exit.c
+++ linux-next-20220121/kernel/exit.c
@@ -896,6 +896,7 @@ void __noreturn make_task_dead(int signr
 
 	do_exit(signr);
 }
+EXPORT_SYMBOL(make_task_dead);
 
 SYSCALL_DEFINE1(exit, int, error_code)
 {

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

* Re: [PATCH -next] exit: export make_task_dead()
  2022-01-22 17:48 [PATCH -next] exit: export make_task_dead() Randy Dunlap
@ 2022-01-24  9:20 ` Christoph Hellwig
  2022-01-24 19:30   ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2022-01-24  9:20 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, Eric W. Biederman, linux-ia64, Tony Luck,
	kernel test robot

On Sat, Jan 22, 2022 at 09:48:34AM -0800, Randy Dunlap wrote:
> In a config file from "kernel test robot <lkp@intel.com>" for a
> different problem, this linker error was exposed when
> CONFIG_IA64_MCA_RECOVERY=m.
> 
> We could either export make_task_dead() or restrict IA64_MCA_RECOVERY
> to a bool Kconfig symbol instead of a tristate symbol, so go with the
> EXPORT_SYMBOL() path.
> 
> Fixes this build error:
> 
> ERROR: modpost: "make_task_dead" [arch/ia64/kernel/mca_recovery.ko] undefined!
> 
> Fixes: 0e25498f8cd4 ("exit: Add and use make_task_dead.")
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: "Eric W. Biederman" <ebiederm@xmission.com>
> Cc: linux-ia64@vger.kernel.org
> Cc: Tony Luck <tony.luck@intel.com>
> Cc: kernel test robot <lkp@intel.com>
> ---
>  kernel/exit.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> --- linux-next-20220121.orig/kernel/exit.c
> +++ linux-next-20220121/kernel/exit.c
> @@ -896,6 +896,7 @@ void __noreturn make_task_dead(int signr
>  
>  	do_exit(signr);
>  }
> +EXPORT_SYMBOL(make_task_dead);

EXPORT_SYMBOL_GPL and restricted, please.

Or even better: force the mca recovery code to be built in.

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

* Re: [PATCH -next] exit: export make_task_dead()
  2022-01-24  9:20 ` Christoph Hellwig
@ 2022-01-24 19:30   ` Randy Dunlap
  0 siblings, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2022-01-24 19:30 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-kernel, Eric W. Biederman, linux-ia64, Tony Luck,
	kernel test robot



On 1/24/22 01:20, Christoph Hellwig wrote:
> On Sat, Jan 22, 2022 at 09:48:34AM -0800, Randy Dunlap wrote:
>> In a config file from "kernel test robot <lkp@intel.com>" for a
>> different problem, this linker error was exposed when
>> CONFIG_IA64_MCA_RECOVERY=m.
>>
>> We could either export make_task_dead() or restrict IA64_MCA_RECOVERY
>> to a bool Kconfig symbol instead of a tristate symbol, so go with the

OK, I'll send a patch to do ^^^that^^^ instead.

>> EXPORT_SYMBOL() path.
>>
>> Fixes this build error:
>>
>> ERROR: modpost: "make_task_dead" [arch/ia64/kernel/mca_recovery.ko] undefined!
>>
>> Fixes: 0e25498f8cd4 ("exit: Add and use make_task_dead.")
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> Cc: "Eric W. Biederman" <ebiederm@xmission.com>
>> Cc: linux-ia64@vger.kernel.org
>> Cc: Tony Luck <tony.luck@intel.com>
>> Cc: kernel test robot <lkp@intel.com>
>> ---
>>  kernel/exit.c |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> --- linux-next-20220121.orig/kernel/exit.c
>> +++ linux-next-20220121/kernel/exit.c
>> @@ -896,6 +896,7 @@ void __noreturn make_task_dead(int signr
>>  
>>  	do_exit(signr);
>>  }
>> +EXPORT_SYMBOL(make_task_dead);
> 
> EXPORT_SYMBOL_GPL and restricted, please.
> 
> Or even better: force the mca recovery code to be built in.

thanks.
-- 
~Randy

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

end of thread, other threads:[~2022-01-24 19:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-22 17:48 [PATCH -next] exit: export make_task_dead() Randy Dunlap
2022-01-24  9:20 ` Christoph Hellwig
2022-01-24 19:30   ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox