All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J . Wysocki" <rafael.j.wysocki@intel.com>,
	"Rafael J . Wysocki" <rjw@rjwysocki.net>,
	Len Brown <len.brown@intel.com>
Cc: Lv Zheng <lv.zheng@intel.com>, Lv Zheng <zetalog@gmail.com>,
	linux-acpi@vger.kernel.org
Subject: [PATCH 00/16] ACPICA 20170629 Release
Date: Mon, 10 Jul 2017 15:22:39 +0800	[thread overview]
Message-ID: <cover.1499671181.git.lv.zheng@intel.com> (raw)

The 20170629 ACPICA kernel-resident subsystem updates are linuxized based
on the linux-pm/linux-next branch.

The patchset has passed the following build/boot tests.
Build tests are performed as follows:
1. i386 + allyes
2. i386 + allno
3. i386 + default + ACPI_DEBUGGER=y
4. i386 + default + ACPI_DEBUGGER=n + ACPI_DEBUG=y
5. i386 + default + ACPI_DEBUG=n + ACPI=y
6. i386 + default + ACPI=n
7. x86_64 + allyes
8. x86_64 + allno
9. x86_64 + default + ACPI_DEBUGGER=y
10.x86_64 + default + ACPI_DEBUGGER=n + ACPI_DEBUG=y
11.x86_64 + default + ACPI_DEBUG=n + ACPI=y
12.x86_64 + default + ACPI=n
Boot tests are performed as follows:
1. x86_64 + default + ACPI_DEBUGGER=y
Where:
1. i386: machine named as "Dell Inspiron Mini 1010"
2. x86_64: machine named as "Microsoft Surface Pro 3"
3. default: kernel configuration with following items enabled:
   All hardware drivers related to the machines of i386/x86_64
   All "drivers/acpi" configurations
   All "drivers/platform" drivers
   All other drivers that link the APIs provided by ACPICA subsystem

The divergences checking result:
Before applying (20170531 Release):
  369 lines
After applying (20170629 Release):
  390 lines (increased due to export of acpi_tb_xxx functions)

Alex James (1):
  ACPICA: iASL: Ensure that the target node is valid in
    acpi_ex_create_alias

Bob Moore (2):
  ACPICA: Small indentation changes, no functional change
  ACPICA: Update version to 20170629

Erik Schmauss (3):
  ACPICA: Tools: Deallocate memory allocated by
    ac_get_all_tables_from_file via ac_delete_table_list
  ACPICA: iASL compiler: allow compilation of externals with paths that
    refer to existing names
  ACPICA: Disassembler: skip parsing of incorrect external declarations

Ganapatrao Kulkarni (1):
  ACPICA: iasl: Update to IORT SMMUv3 disassembling

Kees Cook (1):
  Back port of "ACPICA: Use designated initializers"

Lv Zheng (7):
  ACPICA: linuxize: cleanup typedef definitions
  ACPICA: Tables: Add sanity check in acpi_put_table()
  ACPICA: Tables: Cleanup table handler invokers
  ACPICA: Tables: Do not validate signature for dynamic table load
  ACPICA: Tables: Change table duplication check to be related to
    acpi_gbl_verify_table_checksum
  ACPICA: Tables: Combine checksum/duplication verification together
  ACPICA: Tables: Add deferred table verification support

Robin Murphy (1):
  ACPICA: IORT: Update SMMU models for revision C

 drivers/acpi/acpica/acapps.h    |   2 +
 drivers/acpi/acpica/aclocal.h   |   5 +-
 drivers/acpi/acpica/acobject.h  |  12 ++-
 drivers/acpi/acpica/actables.h  |   5 +-
 drivers/acpi/acpica/excreate.c  |   5 +
 drivers/acpi/acpica/hwxfsleep.c |   9 +-
 drivers/acpi/acpica/nsaccess.c  |   6 ++
 drivers/acpi/acpica/psobject.c  |  26 +++++
 drivers/acpi/acpica/tbdata.c    | 230 +++++++++++++++++++++++++++++++++++-----
 drivers/acpi/acpica/tbinstal.c  | 161 ++++------------------------
 drivers/acpi/acpica/tbxface.c   |  39 ++++++-
 drivers/acpi/acpica/tbxfload.c  |   2 +-
 drivers/acpi/bus.c              |   3 -
 drivers/acpi/tables.c           |   4 +-
 include/acpi/acpixf.h           |  15 +--
 include/acpi/actbl.h            |   1 +
 include/acpi/actbl2.h           |  16 ++-
 include/acpi/platform/acenv.h   |   9 +-
 include/acpi/platform/aclinux.h |   3 +
 19 files changed, 356 insertions(+), 197 deletions(-)

-- 
2.7.4


             reply	other threads:[~2017-07-10  7:22 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-10  7:22 Lv Zheng [this message]
2017-07-10  7:22 ` [PATCH 01/16] ACPICA: Small indentation changes, no functional change Lv Zheng
2017-07-10  7:22 ` [PATCH 02/16] ACPICA: IORT: Update SMMU models for revision C Lv Zheng
2017-07-10  7:22 ` [PATCH 03/16] ACPICA: Tools: Deallocate memory allocated by ac_get_all_tables_from_file via ac_delete_table_list Lv Zheng
2017-07-10  7:23 ` [PATCH 04/16] ACPICA: iASL compiler: allow compilation of externals with paths that refer to existing names Lv Zheng
2017-07-10  7:23 ` [PATCH 05/16] Back port of "ACPICA: Use designated initializers" Lv Zheng
2017-07-10  7:23 ` [PATCH 06/16] ACPICA: linuxize: cleanup typedef definitions Lv Zheng
2017-07-10  7:23 ` [PATCH 07/16] ACPICA: Tables: Add sanity check in acpi_put_table() Lv Zheng
2017-07-10  7:23 ` [PATCH 08/16] ACPICA: Tables: Cleanup table handler invokers Lv Zheng
2017-07-10  7:23 ` [PATCH 09/16] ACPICA: Tables: Do not validate signature for dynamic table load Lv Zheng
2017-07-10  7:23 ` [PATCH 10/16] ACPICA: Tables: Change table duplication check to be related to acpi_gbl_verify_table_checksum Lv Zheng
2017-07-10  7:23 ` [PATCH 11/16] ACPICA: Tables: Combine checksum/duplication verification together Lv Zheng
2017-07-10  7:23 ` [PATCH 12/16] ACPICA: Tables: Add deferred table verification support Lv Zheng
2017-07-10  7:24 ` [PATCH 13/16] ACPICA: iASL: Ensure that the target node is valid in acpi_ex_create_alias Lv Zheng
2017-07-10  7:24 ` [PATCH 14/16] ACPICA: Disassembler: skip parsing of incorrect external declarations Lv Zheng
2017-07-10  7:24 ` [PATCH 15/16] ACPICA: iasl: Update to IORT SMMUv3 disassembling Lv Zheng
2017-07-10  7:24 ` [PATCH 16/16] ACPICA: Update version to 20170629 Lv Zheng
2017-07-21 22:02 ` [PATCH 00/16] ACPICA 20170629 Release Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2017-07-10  7:19 Lv Zheng

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1499671181.git.lv.zheng@intel.com \
    --to=lv.zheng@intel.com \
    --cc=len.brown@intel.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=rjw@rjwysocki.net \
    --cc=zetalog@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.