From c0b2e0cebe050c1fa50ff38bb08f314611a138b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=89=E8=99=8E?= Date: Mon, 16 Oct 2023 14:42:23 +0800 Subject: [PATCH] fix: fix processor name contain 'processor' issue When model name contain processor, such as 'Common KVM processor', it will cause a false calculate in processor. To prevent this, add ^ to make sure it only count the line start with processor. --- bench.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench.sh b/bench.sh index 395583d..34381d6 100644 --- a/bench.sh +++ b/bench.sh @@ -235,7 +235,7 @@ print_intro() { # Get System information get_system_info() { cname=$(awk -F: '/model name/ {name=$2} END {print name}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//') - cores=$(awk -F: '/processor/ {core++} END {print core}' /proc/cpuinfo) + cores=$(awk -F: '/^processor/ {core++} END {print core}' /proc/cpuinfo) freq=$(awk -F'[ :]' '/cpu MHz/ {print $4;exit}' /proc/cpuinfo) ccache=$(awk -F: '/cache size/ {cache=$2} END {print cache}' /proc/cpuinfo | sed 's/^[ \t]*//;s/[ \t]*$//') cpu_aes=$(grep -i 'aes' /proc/cpuinfo)