public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
From: "Rafael J. Wysocki" <rjw@rjwysocki.net>
To: Lv Zheng <lv.zheng@intel.com>
Cc: Len Brown <len.brown@intel.com>, Lv Zheng <zetalog@gmail.com>,
	linux-acpi@vger.kernel.org
Subject: Re: [PATCH 0/8] ACPICA 20170831 Release
Date: Tue, 19 Sep 2017 01:42:42 +0200	[thread overview]
Message-ID: <2191190.ArtfeQ7rdR@aspire.rjw.lan> (raw)
In-Reply-To: <cover.1505377451.git.lv.zheng@intel.com>

On Friday, September 15, 2017 6:43:49 AM CEST Lv Zheng wrote:
> The 20170831 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 (20170728 Release):
>   390 lines
> After applying (20170831 Release):
>   390 lines
> 
> Bob Moore (6):
>   ACPICA: Header support for the PDTT ACPI table
>   ACPICA: Restructure/cleanup all string-to-integer conversion functions
>   ACPICA: String conversions: Cleanup/format comments. No functional
>     changes
>   ACPICA: String conversions: Update to add new behaviors
>   ACPICA: Update acpi_get_timer for 64-bit interface to acpi_hw_read
>   ACPICA: Update version to 20170831
> 
> Lv Zheng (2):
>   ACPICA: Hardware: Enable 64-bit support of hardware accesses
>   ACPICA: acpiexec: Add testability of deferred table verification
> 
>  drivers/acpi/acpica/Makefile             |   1 +
>  drivers/acpi/acpica/achware.h            |   4 +-
>  drivers/acpi/acpica/acinterp.h           |   6 +-
>  drivers/acpi/acpica/acutils.h            |  33 ++-
>  drivers/acpi/acpica/dbconvert.c          |   5 +-
>  drivers/acpi/acpica/dswexec.c            |   2 +-
>  drivers/acpi/acpica/evgpe.c              |   6 +-
>  drivers/acpi/acpica/exconcat.c           |   2 +-
>  drivers/acpi/acpica/exconvrt.c           |  30 ++-
>  drivers/acpi/acpica/exmisc.c             |   2 +-
>  drivers/acpi/acpica/exresop.c            |   2 +-
>  drivers/acpi/acpica/hwgpe.c              |   4 +-
>  drivers/acpi/acpica/hwregs.c             |  72 ++---
>  drivers/acpi/acpica/hwtimer.c            |  10 +-
>  drivers/acpi/acpica/hwxface.c            | 118 +--------
>  drivers/acpi/acpica/nsconvert.c          |   4 +-
>  drivers/acpi/acpica/tbxface.c            |   9 +-
>  drivers/acpi/acpica/utstrsuppt.c         | 437 ++++++++++++++++++++++++++++++
>  drivers/acpi/acpica/utstrtoul64.c        | 442 ++++++++++++++++---------------
>  include/acpi/acexcep.h                   |  16 +-
>  include/acpi/acpixf.h                    |   2 +-
>  include/acpi/actbl1.h                    |  30 +++
>  tools/power/acpi/tools/acpidump/Makefile |   1 +
>  tools/power/acpi/tools/acpidump/apdump.c |   3 +-
>  tools/power/acpi/tools/acpidump/apmain.c |   4 +-
>  25 files changed, 833 insertions(+), 412 deletions(-)
>  create mode 100644 drivers/acpi/acpica/utstrsuppt.c

It looks like the series has not been picked up by Patchwork,
probably due to a service outage.

Can you please resend it (for easier handling)?

Thanks,
Rafael


      parent reply	other threads:[~2017-09-18 23:51 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-15  4:43 [PATCH 0/8] ACPICA 20170831 Release Lv Zheng
2017-09-15  4:44 ` [PATCH 1/8] ACPICA: Hardware: Enable 64-bit support of hardware accesses Lv Zheng
2017-09-15  4:44 ` [PATCH 2/8] ACPICA: acpiexec: Add testability of deferred table verification Lv Zheng
2017-09-15  4:44 ` [PATCH 3/8] ACPICA: Header support for the PDTT ACPI table Lv Zheng
2017-09-15  4:44 ` [PATCH 4/8] ACPICA: Restructure/cleanup all string-to-integer conversion functions Lv Zheng
2017-09-15  4:44 ` [PATCH 5/8] ACPICA: String conversions: Cleanup/format comments. No functional changes Lv Zheng
2017-09-15  4:44 ` [PATCH 6/8] ACPICA: String conversions: Update to add new behaviors Lv Zheng
2017-09-15  4:44 ` [PATCH 7/8] ACPICA: Update acpi_get_timer for 64-bit interface to acpi_hw_read Lv Zheng
2017-09-15  4:44 ` [PATCH 8/8] ACPICA: Update version to 20170831 Lv Zheng
2017-09-18 23:42 ` Rafael J. Wysocki [this message]

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=2191190.ArtfeQ7rdR@aspire.rjw.lan \
    --to=rjw@rjwysocki.net \
    --cc=len.brown@intel.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=lv.zheng@intel.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox