public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] acpi: EINJ: mark remove callback as non-__exit
@ 2024-03-20 18:02 Arnd Bergmann
  2024-03-20 19:58 ` Dan Williams
  0 siblings, 1 reply; 4+ messages in thread
From: Arnd Bergmann @ 2024-03-20 18:02 UTC (permalink / raw)
  To: Rafael J. Wysocki, Dan Williams, Jonathan Cameron, Ben Cheatham
  Cc: Arnd Bergmann, Len Brown, James Morse, Tony Luck, Borislav Petkov,
	Avadhut Naik, Shuai Xue, linux-acpi, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

The remove callback of a device is called whenever it is unbound,
which may happen during runtime e.g. through sysfs, so this is not
allowed to be dropped from the binary:

WARNING: modpost: vmlinux: section mismatch in reference: einj_driver+0x8 (section: .data) -> einj_remove (section: .exit.text)
ERROR: modpost: Section mismatches detected.

Remove that annotation.

Fixes: 12fb28ea6b1c ("EINJ: Add CXL error type support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/acpi/apei/einj-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/apei/einj-core.c b/drivers/acpi/apei/einj-core.c
index 66e7f529e92f..01faca3a238a 100644
--- a/drivers/acpi/apei/einj-core.c
+++ b/drivers/acpi/apei/einj-core.c
@@ -851,7 +851,7 @@ static int __init einj_probe(struct platform_device *pdev)
 	return rc;
 }
 
-static void __exit einj_remove(struct platform_device *pdev)
+static void einj_remove(struct platform_device *pdev)
 {
 	struct apei_exec_context ctx;
 
-- 
2.39.2


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

* Re: [PATCH] acpi: EINJ: mark remove callback as non-__exit
  2024-03-20 18:02 [PATCH] acpi: EINJ: mark remove callback as non-__exit Arnd Bergmann
@ 2024-03-20 19:58 ` Dan Williams
  2024-03-20 20:00   ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Dan Williams @ 2024-03-20 19:58 UTC (permalink / raw)
  To: Arnd Bergmann, Rafael J. Wysocki, Dan Williams, Jonathan Cameron,
	Ben Cheatham
  Cc: Arnd Bergmann, Len Brown, James Morse, Tony Luck, Borislav Petkov,
	Avadhut Naik, Shuai Xue, linux-acpi, linux-kernel

Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> The remove callback of a device is called whenever it is unbound,
> which may happen during runtime e.g. through sysfs, so this is not
> allowed to be dropped from the binary:
> 
> WARNING: modpost: vmlinux: section mismatch in reference: einj_driver+0x8 (section: .data) -> einj_remove (section: .exit.text)
> ERROR: modpost: Section mismatches detected.
> 
> Remove that annotation.

Looks good, not sure why the build robots missed this while this was
sitting in -next. Yes, this was a side effect of reusing the former
einj_exit() as the device remove callback.

Reviewed-by: Dan Williams <dan.j.williams@intel.com>

Rafael, can you pick this up?

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

* Re: [PATCH] acpi: EINJ: mark remove callback as non-__exit
  2024-03-20 19:58 ` Dan Williams
@ 2024-03-20 20:00   ` Rafael J. Wysocki
  2024-03-26 11:18     ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2024-03-20 20:00 UTC (permalink / raw)
  To: Dan Williams
  Cc: Arnd Bergmann, Rafael J. Wysocki, Jonathan Cameron, Ben Cheatham,
	Arnd Bergmann, Len Brown, James Morse, Tony Luck, Borislav Petkov,
	Avadhut Naik, Shuai Xue, linux-acpi, linux-kernel

On Wed, Mar 20, 2024 at 8:58 PM Dan Williams <dan.j.williams@intel.com> wrote:
>
> Arnd Bergmann wrote:
> > From: Arnd Bergmann <arnd@arndb.de>
> >
> > The remove callback of a device is called whenever it is unbound,
> > which may happen during runtime e.g. through sysfs, so this is not
> > allowed to be dropped from the binary:
> >
> > WARNING: modpost: vmlinux: section mismatch in reference: einj_driver+0x8 (section: .data) -> einj_remove (section: .exit.text)
> > ERROR: modpost: Section mismatches detected.
> >
> > Remove that annotation.
>
> Looks good, not sure why the build robots missed this while this was
> sitting in -next. Yes, this was a side effect of reusing the former
> einj_exit() as the device remove callback.
>
> Reviewed-by: Dan Williams <dan.j.williams@intel.com>
>
> Rafael, can you pick this up?

I will, thanks!

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

* Re: [PATCH] acpi: EINJ: mark remove callback as non-__exit
  2024-03-20 20:00   ` Rafael J. Wysocki
@ 2024-03-26 11:18     ` Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2024-03-26 11:18 UTC (permalink / raw)
  To: Dan Williams, Arnd Bergmann
  Cc: Jonathan Cameron, Ben Cheatham, Arnd Bergmann, Len Brown,
	James Morse, Tony Luck, Borislav Petkov, Avadhut Naik, Shuai Xue,
	linux-acpi, linux-kernel

On Wed, Mar 20, 2024 at 9:00 PM Rafael J. Wysocki <rafael@kernel.org> wrote:
>
> On Wed, Mar 20, 2024 at 8:58 PM Dan Williams <dan.j.williams@intel.com> wrote:
> >
> > Arnd Bergmann wrote:
> > > From: Arnd Bergmann <arnd@arndb.de>
> > >
> > > The remove callback of a device is called whenever it is unbound,
> > > which may happen during runtime e.g. through sysfs, so this is not
> > > allowed to be dropped from the binary:
> > >
> > > WARNING: modpost: vmlinux: section mismatch in reference: einj_driver+0x8 (section: .data) -> einj_remove (section: .exit.text)
> > > ERROR: modpost: Section mismatches detected.
> > >
> > > Remove that annotation.
> >
> > Looks good, not sure why the build robots missed this while this was
> > sitting in -next. Yes, this was a side effect of reusing the former
> > einj_exit() as the device remove callback.
> >
> > Reviewed-by: Dan Williams <dan.j.williams@intel.com>
> >
> > Rafael, can you pick this up?
>
> I will, thanks!

Applied now, thanks!

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

end of thread, other threads:[~2024-03-26 11:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-20 18:02 [PATCH] acpi: EINJ: mark remove callback as non-__exit Arnd Bergmann
2024-03-20 19:58 ` Dan Williams
2024-03-20 20:00   ` Rafael J. Wysocki
2024-03-26 11:18     ` Rafael J. Wysocki

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