public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v1] x86: Fix incorrect scope of setting `shared_per_thread`
@ 2023-08-11  0:31 Noah Goldstein
  2023-08-11  1:37 ` H.J. Lu
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Noah Goldstein @ 2023-08-11  0:31 UTC (permalink / raw)
  To: libc-alpha; +Cc: goldstein.w.n, hjl.tools, carlos

The:

```
    if (shared_per_thread > 0 && threads > 0)
      shared_per_thread /= threads;
```

Code was accidentally moved to inside the else scope.  This doesn't
match how it was previously (before af992e7abd).

This patch fixes that by putting the division after the `else` block.
---
 sysdeps/x86/dl-cacheinfo.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sysdeps/x86/dl-cacheinfo.h b/sysdeps/x86/dl-cacheinfo.h
index 285773039f..88316a7818 100644
--- a/sysdeps/x86/dl-cacheinfo.h
+++ b/sysdeps/x86/dl-cacheinfo.h
@@ -770,11 +770,10 @@ get_common_cache_info (long int *shared_ptr, long int * shared_per_thread_ptr, u
 	     level.  */
 	  threads = ((cpu_features->features[CPUID_INDEX_1].cpuid.ebx >> 16)
 		     & 0xff);
-
+        }
 	  /* Get per-thread size of highest level cache.  */
 	  if (shared_per_thread > 0 && threads > 0)
 	    shared_per_thread /= threads;
-	}
     }
 
   /* Account for non-inclusive L2 and L3 caches.  */
-- 
2.34.1


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

end of thread, other threads:[~2023-08-11 20:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-11  0:31 [PATCH v1] x86: Fix incorrect scope of setting `shared_per_thread` Noah Goldstein
2023-08-11  1:37 ` H.J. Lu
2023-08-11  2:51   ` Noah Goldstein
2023-08-11  2:50 ` [PATCH v2] x86: Fix incorrect scope of setting `shared_per_thread` [BZ# 30745] Noah Goldstein
2023-08-11  7:46   ` Andreas Schwab
2023-08-11 17:29     ` Noah Goldstein
2023-08-11 17:29 ` [PATCH v3] " Noah Goldstein
2023-08-11 17:31   ` H.J. Lu
2023-08-11 18:35     ` Carlos O'Donell
2023-08-11 19:38   ` Carlos O'Donell
2023-08-11 20:33     ` Noah Goldstein

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).