mbox series

[00/10] ACPICA release 20181213

Message ID 20181213203035.12387-1-erik.schmauss@intel.com (mailing list archive)
Headers show
Series ACPICA release 20181213 | expand

Message

Schmauss, Erik Dec. 13, 2018, 8:30 p.m. UTC
This is the 20181213 release of ACPICA.

Notable changes include the addition of a _OSI strings, updates
to buffer-to-string conversions, adding a new debug level (0x80000)
to emit namespace evaluation queries from OS to the AML interpreter,
and several code clean-up commits.

Rafael, feel free to let me know if we should hold back on the _OSI
strings.

Bob Moore (6):
  ACPICA: Add "Windows 2018" string in the _OSI support
  ACPICA: acpihelp: Improve support for the special predefined names
  ACPICA: Update buffer-to-string conversions
  ACPICA: Expressions within package elements are not supported
  ACPICA: Debug output: Add option to display method/object evaluation
  ACPICA: Update version to 20181213

Erik Schmauss (3):
  ACPICA: Remove defines that use deprecated ACPI_NO_METHOD_EXECUTE flag
  ACPICA: disassembler: disassemble OEMx tables as AML
  ACPICA: change coding style to match ACPICA, no functional change

Jung-uk Kim (1):
  ACPICA: Add "Windows 2018.2" string in the _OSI support

 drivers/acpi/acpica/acglobal.h  |  4 ---
 drivers/acpi/acpica/acstruct.h  |  5 +++-
 drivers/acpi/acpica/dsmethod.c  | 14 ++++++++++
 drivers/acpi/acpica/dsobject.c  | 11 --------
 drivers/acpi/acpica/dspkginit.c | 26 +++++++++++++++++
 drivers/acpi/acpica/dsutils.c   |  2 --
 drivers/acpi/acpica/dswload.c   |  6 +---
 drivers/acpi/acpica/dswload2.c  |  7 -----
 drivers/acpi/acpica/dswstate.c  |  2 +-
 drivers/acpi/acpica/exconvrt.c  | 49 +++++++++++++++++++++++++--------
 drivers/acpi/acpica/excreate.c  |  2 --
 drivers/acpi/acpica/exoparg2.c  |  6 ++--
 drivers/acpi/acpica/exserial.c  |  6 ++--
 drivers/acpi/acpica/exutils.c   |  3 --
 drivers/acpi/acpica/nseval.c    | 13 +++++++++
 drivers/acpi/acpica/nsload.c    |  2 --
 drivers/acpi/acpica/nsparse.c   | 12 ++++++++
 drivers/acpi/acpica/psloop.c    |  2 +-
 drivers/acpi/acpica/psparse.c   | 15 ++++++++++
 drivers/acpi/acpica/psxface.c   |  6 ++++
 drivers/acpi/acpica/utglobal.c  |  3 --
 drivers/acpi/acpica/utmisc.c    |  3 +-
 drivers/acpi/acpica/utosi.c     |  2 ++
 include/acpi/acoutput.h         |  6 ++--
 include/acpi/acpixf.h           |  2 +-
 include/acpi/actbl.h            |  1 +
 include/acpi/actypes.h          |  6 ++++
 27 files changed, 153 insertions(+), 63 deletions(-)

Comments

Rafael J. Wysocki Dec. 17, 2018, 11:36 a.m. UTC | #1
On Thursday, December 13, 2018 9:30:25 PM CET Erik Schmauss wrote:
> This is the 20181213 release of ACPICA.
> 
> Notable changes include the addition of a _OSI strings, updates
> to buffer-to-string conversions, adding a new debug level (0x80000)
> to emit namespace evaluation queries from OS to the AML interpreter,
> and several code clean-up commits.
> 
> Rafael, feel free to let me know if we should hold back on the _OSI
> strings.
> 
> Bob Moore (6):
>   ACPICA: Add "Windows 2018" string in the _OSI support
>   ACPICA: acpihelp: Improve support for the special predefined names
>   ACPICA: Update buffer-to-string conversions
>   ACPICA: Expressions within package elements are not supported
>   ACPICA: Debug output: Add option to display method/object evaluation
>   ACPICA: Update version to 20181213
> 
> Erik Schmauss (3):
>   ACPICA: Remove defines that use deprecated ACPI_NO_METHOD_EXECUTE flag
>   ACPICA: disassembler: disassemble OEMx tables as AML
>   ACPICA: change coding style to match ACPICA, no functional change
> 
> Jung-uk Kim (1):
>   ACPICA: Add "Windows 2018.2" string in the _OSI support
> 

I'm somewhat concerned about the new _OSI strings, but I've applied the
series.

Thanks!
Schmauss, Erik Dec. 17, 2018, 5:58 p.m. UTC | #2
> -----Original Message-----
> From: Rafael J. Wysocki [mailto:rjw@rjwysocki.net]
> Sent: Monday, December 17, 2018 3:36 AM
> To: Schmauss, Erik <erik.schmauss@intel.com>
> Cc: linux-acpi@vger.kernel.org
> Subject: Re: [PATCH 00/10] ACPICA release 20181213
> 
> On Thursday, December 13, 2018 9:30:25 PM CET Erik Schmauss wrote:
> > This is the 20181213 release of ACPICA.
> >
> > Notable changes include the addition of a _OSI strings, updates to
> > buffer-to-string conversions, adding a new debug level (0x80000) to
> > emit namespace evaluation queries from OS to the AML interpreter, and
> > several code clean-up commits.
> >
> > Rafael, feel free to let me know if we should hold back on the _OSI
> > strings.
> >
> > Bob Moore (6):
> >   ACPICA: Add "Windows 2018" string in the _OSI support
> >   ACPICA: acpihelp: Improve support for the special predefined names
> >   ACPICA: Update buffer-to-string conversions
> >   ACPICA: Expressions within package elements are not supported
> >   ACPICA: Debug output: Add option to display method/object evaluation
> >   ACPICA: Update version to 20181213
> >
> > Erik Schmauss (3):
> >   ACPICA: Remove defines that use deprecated
> ACPI_NO_METHOD_EXECUTE flag
> >   ACPICA: disassembler: disassemble OEMx tables as AML
> >   ACPICA: change coding style to match ACPICA, no functional change
> >
> > Jung-uk Kim (1):
> >   ACPICA: Add "Windows 2018.2" string in the _OSI support
> >
> 
Hi Rafael,

> I'm somewhat concerned about the new _OSI strings, but I've applied the
> series.

Ok, feel free to drop them if necessary.

Erik
> 
> Thanks!