public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] x86: Restore processing of cache size tunables in init_cacheinfo
@ 2020-10-28 15:11 Florian Weimer
  2020-10-28 15:14 ` H.J. Lu
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Weimer @ 2020-10-28 15:11 UTC (permalink / raw)
  To: H.J. Lu; +Cc: libc-alpha, Sajan Karumanchi, Premachandra Mallappa

Fixes and partially reverts commit 59803e81f96b479c17f583b31eac44b5
("x86: Optimizing memcpy for AMD Zen architecture.").

---
 sysdeps/x86/cacheinfo.h | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/sysdeps/x86/cacheinfo.h b/sysdeps/x86/cacheinfo.h
index 1296c93b2b..0aec0e2875 100644
--- a/sysdeps/x86/cacheinfo.h
+++ b/sysdeps/x86/cacheinfo.h
@@ -354,11 +354,9 @@ init_cacheinfo (void)
       }
     }
 
+  /* Prefer cache size configure via tuning.  */
   if (cpu_features->data_cache_size != 0)
-    {
-      if (data == 0 || cpu_features->basic.kind != arch_kind_amd)
-        data = cpu_features->data_cache_size;
-    }
+    data = cpu_features->data_cache_size;
 
   if (data > 0)
     {
@@ -370,11 +368,9 @@ init_cacheinfo (void)
       __x86_data_cache_size = data;
     }
 
+  /* Prefer cache size configure via tuning.  */
   if (cpu_features->shared_cache_size != 0)
-    {
-      if (shared == 0 || cpu_features->basic.kind != arch_kind_amd)
-        shared = cpu_features->shared_cache_size;
-    }
+    shared = cpu_features->shared_cache_size;
 
   if (shared > 0)
     {

-- 
Red Hat GmbH, https://de.redhat.com/ , Registered seat: Grasbrunn,
Commercial register: Amtsgericht Muenchen, HRB 153243,
Managing Directors: Charles Cachera, Brian Klemm, Laurie Krebs, Michael O'Neill


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86: Restore processing of cache size tunables in init_cacheinfo
  2020-10-28 15:11 [PATCH] x86: Restore processing of cache size tunables in init_cacheinfo Florian Weimer
@ 2020-10-28 15:14 ` H.J. Lu
  2020-10-30  6:46   ` Karumanchi, Sajan
  0 siblings, 1 reply; 3+ messages in thread
From: H.J. Lu @ 2020-10-28 15:14 UTC (permalink / raw)
  To: Florian Weimer; +Cc: GNU C Library, Sajan Karumanchi, Premachandra Mallappa

LGTM. Thanks.

On Wed, Oct 28, 2020, 8:12 AM Florian Weimer <fweimer@redhat.com> wrote:

> Fixes and partially reverts commit 59803e81f96b479c17f583b31eac44b5
> ("x86: Optimizing memcpy for AMD Zen architecture.").
>
> ---
>  sysdeps/x86/cacheinfo.h | 12 ++++--------
>  1 file changed, 4 insertions(+), 8 deletions(-)
>
> diff --git a/sysdeps/x86/cacheinfo.h b/sysdeps/x86/cacheinfo.h
> index 1296c93b2b..0aec0e2875 100644
> --- a/sysdeps/x86/cacheinfo.h
> +++ b/sysdeps/x86/cacheinfo.h
> @@ -354,11 +354,9 @@ init_cacheinfo (void)
>        }
>      }
>
> +  /* Prefer cache size configure via tuning.  */
>    if (cpu_features->data_cache_size != 0)
> -    {
> -      if (data == 0 || cpu_features->basic.kind != arch_kind_amd)
> -        data = cpu_features->data_cache_size;
> -    }
> +    data = cpu_features->data_cache_size;
>
>    if (data > 0)
>      {
> @@ -370,11 +368,9 @@ init_cacheinfo (void)
>        __x86_data_cache_size = data;
>      }
>
> +  /* Prefer cache size configure via tuning.  */
>    if (cpu_features->shared_cache_size != 0)
> -    {
> -      if (shared == 0 || cpu_features->basic.kind != arch_kind_amd)
> -        shared = cpu_features->shared_cache_size;
> -    }
> +    shared = cpu_features->shared_cache_size;
>
>    if (shared > 0)
>      {
>
> --
> Red Hat GmbH, https://de.redhat.com/ , Registered seat: Grasbrunn,
> Commercial register: Amtsgericht Muenchen, HRB 153243,
> Managing Directors: Charles Cachera, Brian Klemm, Laurie Krebs, Michael
> O'Neill
>
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] x86: Restore processing of cache size tunables in init_cacheinfo
  2020-10-28 15:14 ` H.J. Lu
@ 2020-10-30  6:46   ` Karumanchi, Sajan
  0 siblings, 0 replies; 3+ messages in thread
From: Karumanchi, Sajan @ 2020-10-30  6:46 UTC (permalink / raw)
  To: H.J. Lu, Florian Weimer; +Cc: GNU C Library, Mallappa, Premachandra

[AMD Public Use]

Thanks, Florian for the quick fix.

Thanks & Regards,
Sajan K.

From: H.J. Lu <hjl.tools@gmail.com>
Sent: Wednesday, October 28, 2020 8:45 PM
To: Florian Weimer <fweimer@redhat.com>
Cc: GNU C Library <libc-alpha@sourceware.org>; Karumanchi, Sajan <Sajan.Karumanchi@amd.com>; Mallappa, Premachandra <Premachandra.Mallappa@amd.com>
Subject: Re: [PATCH] x86: Restore processing of cache size tunables in init_cacheinfo

[CAUTION: External Email]
LGTM. Thanks.

On Wed, Oct 28, 2020, 8:12 AM Florian Weimer <fweimer@redhat.com<mailto:fweimer@redhat.com>> wrote:
Fixes and partially reverts commit 59803e81f96b479c17f583b31eac44b5
("x86: Optimizing memcpy for AMD Zen architecture.").

---
 sysdeps/x86/cacheinfo.h | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/sysdeps/x86/cacheinfo.h b/sysdeps/x86/cacheinfo.h
index 1296c93b2b..0aec0e2875 100644
--- a/sysdeps/x86/cacheinfo.h
+++ b/sysdeps/x86/cacheinfo.h
@@ -354,11 +354,9 @@ init_cacheinfo (void)
       }
     }

+  /* Prefer cache size configure via tuning.  */
   if (cpu_features->data_cache_size != 0)
-    {
-      if (data == 0 || cpu_features->basic.kind != arch_kind_amd)
-        data = cpu_features->data_cache_size;
-    }
+    data = cpu_features->data_cache_size;

   if (data > 0)
     {
@@ -370,11 +368,9 @@ init_cacheinfo (void)
       __x86_data_cache_size = data;
     }

+  /* Prefer cache size configure via tuning.  */
   if (cpu_features->shared_cache_size != 0)
-    {
-      if (shared == 0 || cpu_features->basic.kind != arch_kind_amd)
-        shared = cpu_features->shared_cache_size;
-    }
+    shared = cpu_features->shared_cache_size;

   if (shared > 0)
     {

--
Red Hat GmbH, https://de.redhat.com/<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fde.redhat.com%2F&data=04%7C01%7Csajan.karumanchi%40amd.com%7Ce17694913cf54bc7244a08d87b543a14%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637394948964874160%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=yV0WP1iAMLzWGpFstXdbqen6ZObCxAoH1b7fBl5l5Wo%3D&reserved=0> , Registered seat: Grasbrunn,
Commercial register: Amtsgericht Muenchen, HRB 153243,
Managing Directors: Charles Cachera, Brian Klemm, Laurie Krebs, Michael O'Neill

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-30  6:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-28 15:11 [PATCH] x86: Restore processing of cache size tunables in init_cacheinfo Florian Weimer
2020-10-28 15:14 ` H.J. Lu
2020-10-30  6:46   ` Karumanchi, Sajan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).