Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1450630
| From | "Moore, Robert" <robert.moore@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | RE: [PATCH] ACPICA: cleanup method properly on error |
| Date | 2016-07-26 16:50 +0200 |
| Message-ID | <rZbQd-39o-3@gated-at.bofh.it> (permalink) |
| References | <rXKIq-7Bs-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
We'll look at this. Thanks. > -----Original Message----- > From: Vegard Nossum [mailto:vegard.nossum@oracle.com] > Sent: Friday, July 22, 2016 8:35 AM > To: Moore, Robert <robert.moore@intel.com>; Zheng, Lv > <lv.zheng@intel.com>; Wysocki, Rafael J <rafael.j.wysocki@intel.com> > Cc: linux-acpi@vger.kernel.org; devel@acpica.org; linux- > kernel@vger.kernel.org; Vegard Nossum <vegard.nossum@oracle.com>; > stable@vger.kernel.org > Subject: [PATCH] ACPICA: cleanup method properly on error > > If the call to acpi_ds_init_aml_walk() fails, then we have to undo the > walk state push done by acpi_ds_create_walk_state(). Otherwise, the new > walk state (which has just been freed) will remain on the thread's > walk_state_list and be dereferenced in acpi_ps_parse_aml() when we try > to get the new state. > > You can observe this when reading e.g. > > /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0F:01/status > > Cc: stable@vger.kernel.org > Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com> > --- > drivers/acpi/acpica/dsmethod.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/acpi/acpica/dsmethod.c > b/drivers/acpi/acpica/dsmethod.c index 47c7b52..44b50a6 100644 > --- a/drivers/acpi/acpica/dsmethod.c > +++ b/drivers/acpi/acpica/dsmethod.c > @@ -596,6 +596,8 @@ cleanup: > /* On error, we must terminate the method properly */ > > acpi_ds_terminate_control_method(obj_desc, next_walk_state); > + if (thread) > + acpi_ds_pop_walk_state(thread); > acpi_ds_delete_walk_state(next_walk_state); > > return_ACPI_STATUS(status); > -- > 1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
RE: [PATCH] ACPICA: cleanup method properly on error "Moore, Robert" <robert.moore@intel.com> - 2016-07-26 16:50 +0200
RE: [PATCH] ACPICA: cleanup method properly on error "Moore, Robert" <robert.moore@intel.com> - 2016-07-26 22:30 +0200
Re: [PATCH] ACPICA: cleanup method properly on error Vegard Nossum <vegard.nossum@oracle.com> - 2016-07-27 07:40 +0200
csiph-web