git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] chainlint.pl: Extend regexp pattern for /proc/cpuinfo on Linux SPARC
@ 2024-05-20 11:11 John Paul Adrian Glaubitz
  2024-05-20 16:16 ` Junio C Hamano
  2024-05-20 19:01 ` [PATCH 0/3] improve chainlint.pl CPU count computation Eric Sunshine
  0 siblings, 2 replies; 23+ messages in thread
From: John Paul Adrian Glaubitz @ 2024-05-20 11:11 UTC (permalink / raw)
  To: git; +Cc: Eric Sunshine, Sam James, Andreas Larsson,
	John Paul Adrian Glaubitz

On SPARC systems running Linux, individual processors are denoted with
"CPUnn:" in /proc/cpuinfo instead of the usual "processor NN:" so that
the current regexp in ncores() returns 0. Extend the regexp to match
lines with "CPUnn:" as well to properly detect the number of available
cores on these systems.

Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
---
 t/chainlint.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/chainlint.pl b/t/chainlint.pl
index 556ee91a15..63cac942ac 100755
--- a/t/chainlint.pl
+++ b/t/chainlint.pl
@@ -718,7 +718,7 @@ sub ncores {
 	# Windows
 	return $ENV{NUMBER_OF_PROCESSORS} if exists($ENV{NUMBER_OF_PROCESSORS});
 	# Linux / MSYS2 / Cygwin / WSL
-	do { local @ARGV='/proc/cpuinfo'; return scalar(grep(/^processor[\s\d]*:/, <>)); } if -r '/proc/cpuinfo';
+	do { local @ARGV='/proc/cpuinfo'; return scalar(grep(/^processor[\s\d]*:||^CPU[\d]*:/, <>)); } if -r '/proc/cpuinfo';
 	# macOS & BSD
 	return qx/sysctl -n hw.ncpu/ if $^O =~ /(?:^darwin$|bsd)/;
 	return 1;
-- 
2.39.2


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

end of thread, other threads:[~2024-05-27 20:12 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-20 11:11 [PATCH] chainlint.pl: Extend regexp pattern for /proc/cpuinfo on Linux SPARC John Paul Adrian Glaubitz
2024-05-20 16:16 ` Junio C Hamano
2024-05-20 16:48   ` John Paul Adrian Glaubitz
2024-05-20 16:52     ` Eric Sunshine
2024-05-20 16:50   ` Eric Sunshine
2024-05-20 17:07     ` Eric Sunshine
2024-05-20 17:23     ` Junio C Hamano
2024-05-20 19:01 ` [PATCH 0/3] improve chainlint.pl CPU count computation Eric Sunshine
2024-05-20 19:01   ` [PATCH 1/3] chainlint.pl: make CPU count computation more robust Eric Sunshine
2024-05-20 19:01   ` [PATCH 2/3] chainlint.pl: fix incorrect CPU count on Linux SPARC Eric Sunshine
2024-05-22  8:32     ` Carlo Marcelo Arenas Belón
2024-05-22  8:47       ` John Paul Adrian Glaubitz
2024-05-22  9:05         ` Eric Sunshine
2024-05-22 19:00           ` Junio C Hamano
2024-05-22 19:11             ` Eric Sunshine
2024-05-27 19:48               ` John Paul Adrian Glaubitz
2024-05-27 20:12                 ` Eric Sunshine
2024-05-20 19:01   ` [PATCH 3/3] chainlint.pl: latch CPU count directly reported by /proc/cpuinfo Eric Sunshine
2024-05-20 19:17   ` [PATCH 0/3] improve chainlint.pl CPU count computation John Paul Adrian Glaubitz
2024-05-20 19:19     ` Eric Sunshine
2024-05-20 19:23       ` John Paul Adrian Glaubitz
2024-05-21 14:28         ` John Paul Adrian Glaubitz
2024-05-21 16:18           ` Eric Sunshine

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 NNTP newsgroup(s).