scripts: coccicheck: fix troubles on non-English builds
When LANG is not set to English, the logic which checks the
number of CPUs fail, as the messages can be localized, and
the logic at:
THREADS_PER_CORE=$(lscpu | grep "Thread(s) per core: " | tr -cd "[:digit:]")
will not get the number of threads per core.
This causes the script to not run properly, as it will produce
a warning:
$ make coccicheck COCCI=$PWD/scripts/coccinelle/misc/add_namespace.cocci MODE=report drivers/media/
./scripts/coccicheck: linha 93: [: número excessivo de argumentos
Fix it by forcing LANG=C when calling lscpu.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
This commit is contained in:
committed by
Julia Lawall
parent
aeb300c1db
commit
f5b3553b50
@@ -87,7 +87,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Use only one thread per core by default if hyperthreading is enabled
|
# Use only one thread per core by default if hyperthreading is enabled
|
||||||
THREADS_PER_CORE=$(lscpu | grep "Thread(s) per core: " | tr -cd "[:digit:]")
|
THREADS_PER_CORE=$(LANG=C lscpu | grep "Thread(s) per core: " | tr -cd "[:digit:]")
|
||||||
if [ -z "$J" ]; then
|
if [ -z "$J" ]; then
|
||||||
NPROC=$(getconf _NPROCESSORS_ONLN)
|
NPROC=$(getconf _NPROCESSORS_ONLN)
|
||||||
if [ $THREADS_PER_CORE -gt 1 -a $NPROC -gt 4 ] ; then
|
if [ $THREADS_PER_CORE -gt 1 -a $NPROC -gt 4 ] ; then
|
||||||
|
|||||||
Reference in New Issue
Block a user