summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-07-27 12:01:10 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-08-16 10:11:08 +0200
commite90cc87bbaa9ac929be327f01b3aa3a07ba27774 (patch)
tree56b4a959ba367499771d16cccc7c4802fc64bc0c /scripts
parent8be0ce4f3678106e06a21687db3cda2449ddb4e7 (diff)
downloadlinux-stable-e90cc87bbaa9ac929be327f01b3aa3a07ba27774.tar.gz
linux-stable-e90cc87bbaa9ac929be327f01b3aa3a07ba27774.tar.bz2
linux-stable-e90cc87bbaa9ac929be327f01b3aa3a07ba27774.zip
gen_compile_commands: lower the entry count threshold
[ Upstream commit cb36955a5569f1ff17a42ae93264ef391c013a97 ] Running gen_compile_commands.py after building the kernel with allnoconfig gave this: $ ./scripts/gen_compile_commands.py WARNING: Found 449 entries. Have you compiled the kernel? Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_compile_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_compile_commands.py b/scripts/gen_compile_commands.py
index 7915823b92a5..c458696ef3a7 100755
--- a/scripts/gen_compile_commands.py
+++ b/scripts/gen_compile_commands.py
@@ -21,9 +21,9 @@ _LINE_PATTERN = r'^cmd_[^ ]*\.o := (.* )([^ ]*\.c)$'
_VALID_LOG_LEVELS = ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']
# A kernel build generally has over 2000 entries in its compile_commands.json
-# database. If this code finds 500 or fewer, then warn the user that they might
+# database. If this code finds 300 or fewer, then warn the user that they might
# not have all the .cmd files, and they might need to compile the kernel.
-_LOW_COUNT_THRESHOLD = 500
+_LOW_COUNT_THRESHOLD = 300
def parse_arguments():