lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJZ5v0hxQLboBBhGZvsz1cmQpjwB5v=kj9nr+=tK8BGsQqJOKg@mail.gmail.com>
Date:   Wed, 8 Sep 2021 20:58:51 +0200
From:   "Rafael J. Wysocki" <rafael@...nel.org>
To:     Aubrey Li <aubrey.li@...el.com>
Cc:     "Rafael J. Wysocki" <rjw@...ysocki.net>,
        Paul Menzel <pmenzel@...gen.mpg.de>,
        ACPI Devel Maling List <linux-acpi@...r.kernel.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Aubrey Li <aubrey.li@...ux.intel.com>
Subject: Re: [PATCH v2] ACPI/PRM: Find PRMT table before parse it

On Wed, Sep 8, 2021 at 1:00 PM Aubrey Li <aubrey.li@...el.com> wrote:
>
> Find and verify PRMT table before parse it, this eliminates a
> warning on machines without PRMT table.
>
>         [    7.197173] ACPI: PRMT not present
>
> Fixes: cefc7ca46235 ("ACPI: PRM: implement OperationRegion handler for the PlatformRtMechanism subtype")
> Signed-off-by: Aubrey Li <aubrey.li@...ux.intel.com>
> Tested-by: Paul Menzel <pmenzel@...gen.mpg.de>
> ---
>  drivers/acpi/prmt.c | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/acpi/prmt.c b/drivers/acpi/prmt.c
> index 1f6007a..89c22bc 100644
> --- a/drivers/acpi/prmt.c
> +++ b/drivers/acpi/prmt.c
> @@ -288,10 +288,18 @@ static acpi_status acpi_platformrt_space_handler(u32 function,
>
>  void __init init_prmt(void)
>  {
> +       struct acpi_table_header *tbl;
>         acpi_status status;
> -       int mc = acpi_table_parse_entries(ACPI_SIG_PRMT, sizeof(struct acpi_table_prmt) +
> +       int mc;
> +
> +       status = acpi_get_table(ACPI_SIG_PRMT, 0, &tbl);
> +       if (ACPI_FAILURE(status))
> +               return;
> +
> +       mc = acpi_table_parse_entries(ACPI_SIG_PRMT, sizeof(struct acpi_table_prmt) +
>                                           sizeof (struct acpi_table_prmt_header),
>                                           0, acpi_parse_prmt, 0);
> +       acpi_put_table(tbl);
>         /*
>          * Return immediately if PRMT table is not present or no PRM module found.
>          */
> --

Applied as 5.15-rc material with some edits in the subject and
changelog, thanks!

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ