* [PATCH] ACPI / WMI: Call acpi_wmi_init() later [not found] <20171208151159.urdcrzl5qpfd6jnu@earth.li> @ 2018-01-03 11:49 ` Rafael J. Wysocki 2018-01-05 23:30 ` Rafael J. Wysocki 0 siblings, 1 reply; 5+ messages in thread From: Rafael J. Wysocki @ 2018-01-03 11:49 UTC (permalink / raw) To: Andy Shevchenko, Darren Hart Cc: Jonathan McDowell, linux-acpi, linux-kernel, linux-mm, Joonsoo Kim, platform-driver-x86, Andy Lutomirski From: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Calling acpi_wmi_init() at the subsys_initcall() level causes ordering issues to appear on some systems and they are difficult to reproduce, because there is no guaranteed ordering between subsys_initcall() calls, so they may occur in different orders on different systems. In particular, commit 86d9f48534e8 (mm/slab: fix kmemcg cache creation delayed issue) exposed one of these issues where genl_init() and acpi_wmi_init() are both called at the same initcall level, but the former must run before the latter so as to avoid a NULL pointer dereference. For this reason, move the acpi_wmi_init() invocation to the initcall_sync level which should still be early enough for things to work correctly in the WMI land. Link: https://marc.info/?t=151274596700002&r=1&w=2 Reported-by: Jonathan McDowell <noodles@earth.li> Reported-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Tested-by: Jonathan McDowell <noodles@earth.li> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> --- drivers/platform/x86/wmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-pm/drivers/platform/x86/wmi.c =================================================================== --- linux-pm.orig/drivers/platform/x86/wmi.c +++ linux-pm/drivers/platform/x86/wmi.c @@ -1458,5 +1458,5 @@ static void __exit acpi_wmi_exit(void) class_unregister(&wmi_bus_class); } -subsys_initcall(acpi_wmi_init); +subsys_initcall_sync(acpi_wmi_init); module_exit(acpi_wmi_exit); ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ACPI / WMI: Call acpi_wmi_init() later 2018-01-03 11:49 ` [PATCH] ACPI / WMI: Call acpi_wmi_init() later Rafael J. Wysocki @ 2018-01-05 23:30 ` Rafael J. Wysocki 2018-01-06 1:16 ` Darren Hart 2018-01-06 11:02 ` Jonathan McDowell 0 siblings, 2 replies; 5+ messages in thread From: Rafael J. Wysocki @ 2018-01-05 23:30 UTC (permalink / raw) To: Andy Shevchenko, Darren Hart Cc: Jonathan McDowell, ACPI Devel Maling List, Linux Kernel Mailing List, Linux Memory Management List, Joonsoo Kim, Platform Driver, Andy Lutomirski On Wed, Jan 3, 2018 at 12:49 PM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote: > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > Calling acpi_wmi_init() at the subsys_initcall() level causes ordering > issues to appear on some systems and they are difficult to reproduce, > because there is no guaranteed ordering between subsys_initcall() > calls, so they may occur in different orders on different systems. > > In particular, commit 86d9f48534e8 (mm/slab: fix kmemcg cache > creation delayed issue) exposed one of these issues where genl_init() > and acpi_wmi_init() are both called at the same initcall level, but > the former must run before the latter so as to avoid a NULL pointer > dereference. > > For this reason, move the acpi_wmi_init() invocation to the > initcall_sync level which should still be early enough for things > to work correctly in the WMI land. > > Link: https://marc.info/?t=151274596700002&r=1&w=2 > Reported-by: Jonathan McDowell <noodles@earth.li> > Reported-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> > Tested-by: Jonathan McDowell <noodles@earth.li> > Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Guys, this fixes a crash on boot. If there are no concerns/objections I will just take it through the ACPI tree. > --- > drivers/platform/x86/wmi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: linux-pm/drivers/platform/x86/wmi.c > =================================================================== > --- linux-pm.orig/drivers/platform/x86/wmi.c > +++ linux-pm/drivers/platform/x86/wmi.c > @@ -1458,5 +1458,5 @@ static void __exit acpi_wmi_exit(void) > class_unregister(&wmi_bus_class); > } > > -subsys_initcall(acpi_wmi_init); > +subsys_initcall_sync(acpi_wmi_init); > module_exit(acpi_wmi_exit); > > -- ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ACPI / WMI: Call acpi_wmi_init() later 2018-01-05 23:30 ` Rafael J. Wysocki @ 2018-01-06 1:16 ` Darren Hart 2018-01-06 11:02 ` Jonathan McDowell 1 sibling, 0 replies; 5+ messages in thread From: Darren Hart @ 2018-01-06 1:16 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Andy Shevchenko, Jonathan McDowell, ACPI Devel Maling List, Linux Kernel Mailing List, Linux Memory Management List, Joonsoo Kim, Platform Driver, Andy Lutomirski On Sat, Jan 06, 2018 at 12:30:23AM +0100, Rafael J. Wysocki wrote: > On Wed, Jan 3, 2018 at 12:49 PM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote: > > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > > > Calling acpi_wmi_init() at the subsys_initcall() level causes ordering > > issues to appear on some systems and they are difficult to reproduce, > > because there is no guaranteed ordering between subsys_initcall() > > calls, so they may occur in different orders on different systems. > > > > In particular, commit 86d9f48534e8 (mm/slab: fix kmemcg cache > > creation delayed issue) exposed one of these issues where genl_init() > > and acpi_wmi_init() are both called at the same initcall level, but > > the former must run before the latter so as to avoid a NULL pointer > > dereference. > > > > For this reason, move the acpi_wmi_init() invocation to the > > initcall_sync level which should still be early enough for things > > to work correctly in the WMI land. > > > > Link: https://marc.info/?t=151274596700002&r=1&w=2 > > Reported-by: Jonathan McDowell <noodles@earth.li> > > Reported-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > Tested-by: Jonathan McDowell <noodles@earth.li> > > Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > Guys, this fixes a crash on boot. > > If there are no concerns/objections I will just take it through the ACPI tree. Queued up and running through tests now. I'll have it in for-next as soon as those complete assuming to issues. -- Darren Hart VMware Open Source Technology Center -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ACPI / WMI: Call acpi_wmi_init() later 2018-01-05 23:30 ` Rafael J. Wysocki 2018-01-06 1:16 ` Darren Hart @ 2018-01-06 11:02 ` Jonathan McDowell 2018-01-06 22:59 ` Darren Hart 1 sibling, 1 reply; 5+ messages in thread From: Jonathan McDowell @ 2018-01-06 11:02 UTC (permalink / raw) To: Rafael J. Wysocki Cc: Andy Shevchenko, Darren Hart, ACPI Devel Maling List, Linux Kernel Mailing List, Linux Memory Management List, Joonsoo Kim, Platform Driver, Andy Lutomirski On Sat, Jan 06, 2018 at 12:30:23AM +0100, Rafael J. Wysocki wrote: > On Wed, Jan 3, 2018 at 12:49 PM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote: > > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > > > Calling acpi_wmi_init() at the subsys_initcall() level causes ordering > > issues to appear on some systems and they are difficult to reproduce, > > because there is no guaranteed ordering between subsys_initcall() > > calls, so they may occur in different orders on different systems. > > > > In particular, commit 86d9f48534e8 (mm/slab: fix kmemcg cache > > creation delayed issue) exposed one of these issues where genl_init() > > and acpi_wmi_init() are both called at the same initcall level, but > > the former must run before the latter so as to avoid a NULL pointer > > dereference. > > > > For this reason, move the acpi_wmi_init() invocation to the > > initcall_sync level which should still be early enough for things > > to work correctly in the WMI land. > > > > Link: https://marc.info/?t=151274596700002&r=1&w=2 > > Reported-by: Jonathan McDowell <noodles@earth.li> > > Reported-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > Tested-by: Jonathan McDowell <noodles@earth.li> > > Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > Guys, this fixes a crash on boot. > > If there are no concerns/objections I will just take it through the ACPI tree. Note that I first started seeing it in v4.9 so would ideally hit the appropriate stable trees too. > > --- > > drivers/platform/x86/wmi.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > Index: linux-pm/drivers/platform/x86/wmi.c > > =================================================================== > > --- linux-pm.orig/drivers/platform/x86/wmi.c > > +++ linux-pm/drivers/platform/x86/wmi.c > > @@ -1458,5 +1458,5 @@ static void __exit acpi_wmi_exit(void) > > class_unregister(&wmi_bus_class); > > } > > > > -subsys_initcall(acpi_wmi_init); > > +subsys_initcall_sync(acpi_wmi_init); > > module_exit(acpi_wmi_exit); > > > > -- J. -- /-\ | 101 things you can't have too much |@/ Debian GNU/Linux Developer | of : 36 - Spare video tapes. \- | ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ACPI / WMI: Call acpi_wmi_init() later 2018-01-06 11:02 ` Jonathan McDowell @ 2018-01-06 22:59 ` Darren Hart 0 siblings, 0 replies; 5+ messages in thread From: Darren Hart @ 2018-01-06 22:59 UTC (permalink / raw) To: Jonathan McDowell Cc: Rafael J. Wysocki, Andy Shevchenko, ACPI Devel Maling List, Linux Kernel Mailing List, Linux Memory Management List, Joonsoo Kim, Platform Driver, Andy Lutomirski On Sat, Jan 06, 2018 at 11:02:27AM +0000, Jonathan McDowell wrote: > On Sat, Jan 06, 2018 at 12:30:23AM +0100, Rafael J. Wysocki wrote: > > On Wed, Jan 3, 2018 at 12:49 PM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote: > > > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > > > > > Calling acpi_wmi_init() at the subsys_initcall() level causes ordering > > > issues to appear on some systems and they are difficult to reproduce, > > > because there is no guaranteed ordering between subsys_initcall() > > > calls, so they may occur in different orders on different systems. > > > > > > In particular, commit 86d9f48534e8 (mm/slab: fix kmemcg cache > > > creation delayed issue) exposed one of these issues where genl_init() > > > and acpi_wmi_init() are both called at the same initcall level, but > > > the former must run before the latter so as to avoid a NULL pointer > > > dereference. > > > > > > For this reason, move the acpi_wmi_init() invocation to the > > > initcall_sync level which should still be early enough for things > > > to work correctly in the WMI land. > > > > > > Link: https://marc.info/?t=151274596700002&r=1&w=2 > > > Reported-by: Jonathan McDowell <noodles@earth.li> > > > Reported-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > > Tested-by: Jonathan McDowell <noodles@earth.li> > > > Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > > > > Guys, this fixes a crash on boot. > > > > If there are no concerns/objections I will just take it through the ACPI tree. > > Note that I first started seeing it in v4.9 so would ideally hit the > appropriate stable trees too. Thanks, I'll take care of that. -- Darren Hart VMware Open Source Technology Center ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-01-06 22:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20171208151159.urdcrzl5qpfd6jnu@earth.li>
2018-01-03 11:49 ` [PATCH] ACPI / WMI: Call acpi_wmi_init() later Rafael J. Wysocki
2018-01-05 23:30 ` Rafael J. Wysocki
2018-01-06 1:16 ` Darren Hart
2018-01-06 11:02 ` Jonathan McDowell
2018-01-06 22:59 ` Darren Hart
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox