From: "Leif Lindholm" <leif@nuviainc.com>
To: Rebecca Cran <rebecca@nuviainc.com>
Cc: devel@edk2.groups.io, huangming@linux.alibaba.com,
ardb+tianocore@kernel.org, ming.huang-@outlook.com
Subject: Re: [edk2-devel] [PATCH v1] ArmPkg/Smbios: Fix max cache size 2 wrong issue
Date: Fri, 15 Oct 2021 11:52:12 +0100 [thread overview]
Message-ID: <20211015105212.ancd2gnofbaeifrw@leviathan> (raw)
In-Reply-To: <89a4aecb-12d5-ddc1-e5a5-0055e8e04aee@nuviainc.com>
On Thu, Oct 14, 2021 at 06:05:59 -0600, Rebecca Cran wrote:
> Reviewed-by: Rebecca Cran <rebecca@nuviainc.com>
Acked-by: Leif Lindholm <leif@nuviainc.com>
Merged as 7e43d3e08611.
Thanks!
/
Leif
>
> On 10/14/21 1:23 AM, Ming Huang wrote:
> > As SMBIOS spec, bit-31 of maximum cache size 2 should be 1
> > for 64K granularity.
> >
> > Signed-off-by: Ming Huang <huangming@linux.alibaba.com>
> > ---
> > ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c b/ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c
> > index fb484086a4..4b409ff745 100644
> > --- a/ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c
> > +++ b/ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c
> > @@ -219,7 +219,7 @@ ConfigureCacheArchitectureInformation (
> > CacheSize32 = CacheSize16;
> > } else if ((CacheSize64 / 64) < MAX_INT16) {
> > CacheSize16 = (1 << 15) | (CacheSize64 / 64);
> > - CacheSize32 = CacheSize16;
> > + CacheSize32 = (1 << 31) | (CacheSize64 / 64);
> > } else {
> > if ((CacheSize64 / 1024) <= 2047) {
> > CacheSize32 = CacheSize64;
prev parent reply other threads:[~2021-10-15 10:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-14 7:23 [PATCH v1] ArmPkg/Smbios: Fix max cache size 2 wrong issue Ming Huang
2021-10-14 10:07 ` [edk2-devel] " Leif Lindholm
2021-10-14 12:05 ` Rebecca Cran
2021-10-15 10:52 ` Leif Lindholm [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-list 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=20211015105212.ancd2gnofbaeifrw@leviathan \
--to=devel@edk2.groups.io \
/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