From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: <admiyo@os.amperecomputing.com>
Cc: Robert Moore <robert.moore@intel.com>,
"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Len Brown <lenb@kernel.org>, <netdev@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
Jeremy Kerr <jk@codeconstruct.com.au>,
Matt Johnston <matt@codeconstruct.com.au>,
"David S . Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Sudeep Holla <sudeep.holla@arm.com>,
Huisong Li <lihuisong@huawei.com>
Subject: Re: [PATCH v5 2/3] mctp pcc: Allow PCC Data Type in MCTP resource.
Date: Thu, 1 Aug 2024 12:43:03 +0100 [thread overview]
Message-ID: <20240801124303.000040ce@Huawei.com> (raw)
In-Reply-To: <20240712023626.1010559-3-admiyo@os.amperecomputing.com>
On Thu, 11 Jul 2024 22:36:25 -0400
admiyo@os.amperecomputing.com wrote:
> From: Adam Young <admiyo@os.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@os.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 */
>
next prev parent reply other threads:[~2024-08-01 11:43 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-12 2:36 [PATCH v5 0/3] MCTP over PCC admiyo
2024-07-12 2:36 ` [PATCH v5 1/3] mctp pcc: Check before sending MCTP PCC response ACK admiyo
2024-08-01 11:41 ` Jonathan Cameron
2024-09-13 21:21 ` Adam Young
2024-09-16 9:51 ` Jonathan Cameron
2024-07-12 2:36 ` [PATCH v5 2/3] mctp pcc: Allow PCC Data Type in MCTP resource admiyo
2024-08-01 11:43 ` Jonathan Cameron [this message]
2024-07-12 2:36 ` [PATCH v5 3/3] mctp pcc: Implement MCTP over PCC Transport admiyo
2024-07-13 7:31 ` kernel test robot
2024-07-13 7:53 ` kernel test robot
2024-08-01 12:07 ` Jonathan Cameron
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=20240801124303.000040ce@Huawei.com \
--to=jonathan.cameron@huawei.com \
--cc=admiyo@os.amperecomputing.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jk@codeconstruct.com.au \
--cc=kuba@kernel.org \
--cc=lenb@kernel.org \
--cc=lihuisong@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matt@codeconstruct.com.au \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=rafael.j.wysocki@intel.com \
--cc=robert.moore@intel.com \
--cc=sudeep.holla@arm.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.