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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240801124303.000040ce@Huawei.com>
Date: Thu, 1 Aug 2024 12:43:03 +0100
From: Jonathan Cameron <Jonathan.Cameron@...wei.com>
To: <admiyo@...amperecomputing.com>
CC: Robert Moore <robert.moore@...el.com>, "Rafael J. Wysocki"
	<rafael.j.wysocki@...el.com>, Len Brown <lenb@...nel.org>,
	<netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org>, Jeremy Kerr
	<jk@...econstruct.com.au>, Matt Johnston <matt@...econstruct.com.au>, "David
 S . Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, Jakub
 Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>, Sudeep Holla
	<sudeep.holla@....com>, Huisong Li <lihuisong@...wei.com>
Subject: Re: [PATCH v5 2/3] mctp pcc: Allow PCC Data Type in MCTP resource.

On Thu, 11 Jul 2024 22:36:25 -0400
admiyo@...amperecomputing.com wrote:

> From: Adam Young <admiyo@...amperecomputing.com>
> 
> Note that this patch is for code that will be merged
> in via ACPICA changes.  The corresponding patch in ACPCA
Typo in ACPICA

Add a link to the patch in the acpica tree as then
its easier to identify exactly what needs pulling in before
this merges.

> has already merged. Thus, no changes can be made to this patch.
> 
> Signed-off-by: Adam Young <admiyo@...amperecomputing.com>
> ---
>  drivers/acpi/acpica/rsaddr.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/acpi/acpica/rsaddr.c b/drivers/acpi/acpica/rsaddr.c
> index fff48001d7ef..9f8cfdc51637 100644
> --- a/drivers/acpi/acpica/rsaddr.c
> +++ b/drivers/acpi/acpica/rsaddr.c
> @@ -282,9 +282,10 @@ acpi_rs_get_address_common(struct acpi_resource *resource,
>  
>  	/* Validate the Resource Type */
>  
> -	if ((address.resource_type > 2) && (address.resource_type < 0xC0)) {
> +	if (address.resource_type > 2 &&
> +	    address.resource_type < 0xC0 &&
> +	    address.resource_type != 0x0A)
>  		return (FALSE);
> -	}
>  
>  	/* Get the Resource Type and General Flags */
>  


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ