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>,
	Len Brown <len.brown@intel.com>, Rafael J Wysocki <rjw@sisk.pl>
Cc: linux-acpi@vger.kernel.org, Lv Zheng <lv.zheng@intel.com>
Subject: [PATCH 0/3] ACPICA: Missing patches for 20121220 release.
Date: Fri, 11 Jan 2013 07:29:08 +0000 (UTC)
Date: Sat, 12 Jan 2013 23:28:50 +0800	[thread overview]
Message-ID: <cover.1357982088.git.lv.zheng@intel.com> (raw)
In-Reply-To: <cover.1356668530.git.lv.zheng@intel.com>

This patch set is based on the ACPICA 20121220 release currently can be
found in the linux-next branch of linux-pm tree.
This patch set has stayed in the acpica-201212 branch of the ACPICA
release test tree for one days.
The source code differences between Linux and ACPICA can be summarized as
follows:
1. 1963 Lines (70.0 Kbytes) before applying the patch set;
2. 1796 Lines (64.8 Kbytes) after applying the patch set.

Please review.

Bob Moore (1):
  ACPICA: Source restructuring: split large files into 8 new files.

Lv Zheng (2):
  ACPICA: Cleanup table handler naming conflicts.
  ACPICA: Add new statistics interface.

 drivers/acpi/acpica/Makefile     |    8 +-
 drivers/acpi/acpica/acdebug.h    |   17 +
 drivers/acpi/acpica/acevents.h   |   21 +-
 drivers/acpi/acpica/acglobal.h   |    4 +-
 drivers/acpi/acpica/acnamesp.h   |   12 +
 drivers/acpi/acpica/acparser.h   |   23 +-
 drivers/acpi/acpica/acresrc.h    |    6 +-
 drivers/acpi/acpica/acutils.h    |   50 ++-
 drivers/acpi/acpica/dsmethod.c   |    1 +
 drivers/acpi/acpica/evhandler.c  |  529 ++++++++++++++++++++++++
 drivers/acpi/acpica/evregion.c   |  582 +++------------------------
 drivers/acpi/acpica/evsci.c      |    1 +
 drivers/acpi/acpica/nspredef.c   |  581 +-------------------------
 drivers/acpi/acpica/nsprepkg.c   |  621 ++++++++++++++++++++++++++++
 drivers/acpi/acpica/psloop.c     |  622 ----------------------------
 drivers/acpi/acpica/psobject.c   |  647 +++++++++++++++++++++++++++++
 drivers/acpi/acpica/psopcode.c   |  172 --------
 drivers/acpi/acpica/psopinfo.c   |  223 ++++++++++
 drivers/acpi/acpica/rsdump.c     |  409 +------------------
 drivers/acpi/acpica/rsdumpinfo.c |  454 +++++++++++++++++++++
 drivers/acpi/acpica/tbxface.c    |    4 +-
 drivers/acpi/acpica/utglobal.c   |   11 +
 drivers/acpi/acpica/utmisc.c     |  828 ++++----------------------------------
 drivers/acpi/acpica/utownerid.c  |  218 ++++++++++
 drivers/acpi/acpica/utstring.c   |  574 ++++++++++++++++++++++++++
 drivers/acpi/acpica/utxface.c    |   38 ++
 drivers/acpi/numa.c              |    2 +-
 drivers/acpi/tables.c            |    6 +-
 include/acpi/acconfig.h          |    1 +
 include/acpi/acpixf.h            |    6 +-
 include/acpi/actypes.h           |   12 +-
 include/linux/acpi.h             |   15 +-
 32 files changed, 3580 insertions(+), 3118 deletions(-)
 create mode 100644 drivers/acpi/acpica/evhandler.c
 create mode 100644 drivers/acpi/acpica/nsprepkg.c
 create mode 100644 drivers/acpi/acpica/psobject.c
 create mode 100644 drivers/acpi/acpica/psopinfo.c
 create mode 100644 drivers/acpi/acpica/rsdumpinfo.c
 create mode 100644 drivers/acpi/acpica/utownerid.c
 create mode 100644 drivers/acpi/acpica/utstring.c

-- 
1.7.10


  parent reply	other threads:[~2013-01-11  7:29 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-31  0:03 [PATCH 00/27] ACPICA 20121220 Release Lv Zheng
2012-12-31  0:03 ` [PATCH 01/27] ACPICA: Resources: New interface, AcpiWalkResourceBuffer Lv Zheng
2012-12-31  0:05 ` [PATCH 02/27] ACPICA: Change exception code for LoadTable operator Lv Zheng
2012-12-31  0:05 ` [PATCH 03/27] ACPICA: Eliminate some small unnecessary pathname functions Lv Zheng
2012-12-31  0:05 ` [PATCH 04/27] ACPICA: Add root node optimization to internal get namespace node function Lv Zheng
2012-12-31  0:05 ` [PATCH 05/27] ACPICA: Lint changes, no functional change Lv Zheng
2012-12-31  0:05 ` [PATCH 06/27] ACPICA: Add time macros for various timer/time manipulation Lv Zheng
2012-12-31  0:05 ` [PATCH 07/27] ACPICA: Add header file support for the ACPI 5 TPM2 ACPI table Lv Zheng
2012-12-31  0:05 ` [PATCH 08/27] ACPICA: Resource Manager: Add a pointer cast for a namespace node Lv Zheng
2012-12-31  0:06 ` [PATCH 09/27] ACPICA: DEBUG_PRINT macros: Update to improve performance Lv Zheng
2013-01-04 23:51   ` Rafael J. Wysocki
2013-01-05  0:59     ` Zheng, Lv
2012-12-31  0:06 ` [PATCH 10/27] ACPICA: FUNCTION_TRACE macros: Check if debug is enabled up-front Lv Zheng
2012-12-31  0:06 ` [PATCH 11/27] ACPICA: Eliminate superfluous return_UINT8 and return_UINT32 macros Lv Zheng
2012-12-31  0:06 ` [PATCH 12/27] ACPICA: Update ACPI_IS_DEBUG_ENABLED macro Lv Zheng
2012-12-31  0:06 ` [PATCH 13/27] ACPICA: Deploy new ACPI_IS_DEBUG_ENABLED macro in debug output code Lv Zheng
2012-12-31  0:06 ` [PATCH 14/27] ACPICA: Merge all debug output macros into a single file, acoutput Lv Zheng
2012-12-31  0:06 ` [PATCH 15/27] ACPICA: iASL: Finish support for CSRT table Lv Zheng
2012-12-31  0:06 ` [PATCH 16/27] ACPICA: iASL: Finish support for the TPM2 table Lv Zheng
2012-12-31  0:06 ` [PATCH 17/27] ACPICA: Update for non-configured ACPI_IS_DEBUG_ENABLED macro Lv Zheng
2012-12-31  0:06 ` [PATCH 18/27] ACPICA: Fix possible memory leak in dispatcher error path Lv Zheng
2012-12-31  0:07 ` [PATCH 19/27] ACPICA: Resource manager: Add support for ACPI 5 wake bit in IRQ descriptor Lv Zheng
2012-12-31  0:07 ` [PATCH 20/27] ACPICA: Namespace: Eliminate dot...dot output during initialization Lv Zheng
2012-12-31  0:07 ` [PATCH 21/27] ACPICA: Update ACPICA initialization messages Lv Zheng
2012-12-31  0:07 ` [PATCH 22/27] ACPICA: Interpreter: Add warning if 64-bit constant appears in 32-bit table Lv Zheng
2012-12-31  0:07 ` [PATCH 23/27] ACPICA: Resources: Support for ACPI 5 wake bit in ExtendedInterrupt descriptor Lv Zheng
2012-12-31  0:07 ` [PATCH 24/27] ACPICA: Resources: Split interrupt share/wake bits into two fields Lv Zheng
2012-12-31  0:11 ` [PATCH 25/27] ACPICA: Interpreter: Fix Store() when implicit conversion is not possible Lv Zheng
2012-12-31  0:11 ` [PATCH 27/27] ACPICA: Update version to 20121220 Lv Zheng
2013-01-11  7:29 ` Lv Zheng [this message]
2013-01-11  7:29   ` [PATCH 2/3] ACPICA: Cleanup table handler naming conflicts Lv Zheng
2013-01-11  7:30   ` [PATCH 3/3] ACPICA: Add new statistics interface Lv Zheng
2013-01-11 12:20   ` [PATCH 0/3] ACPICA: Missing patches for 20121220 release Rafael J. Wysocki

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.1357982088.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@sisk.pl \
    /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.