summaryrefslogtreecommitdiffstats
path: root/scripts/get_abi.pl
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-09-28 12:14:02 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-09-28 12:45:42 +0200
commit2833e30aa04d4a025341b7071f9d469538367605 (patch)
treedb2515429845d9fb4eebb77ff1138c707dc9f4c9 /scripts/get_abi.pl
parent42f09848cf3a8af1f9688487ccd81cb4b0fb7a8b (diff)
downloadlinux-2833e30aa04d4a025341b7071f9d469538367605.tar.bz2
scripts: get_abi.pl: use STDERR for search-string and show-hints
On undefined checks, use STDOUT only for the not found entries. All other data (search-string and show-hints) is printed at STDERR. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Link: https://lore.kernel.org/r/51c6a39c82f73b441030c51bf905a1f382452a67.1632823172.git.mchehab+huawei@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/get_abi.pl')
-rwxr-xr-xscripts/get_abi.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl
index 4978163f5b16..a6c91f822363 100755
--- a/scripts/get_abi.pl
+++ b/scripts/get_abi.pl
@@ -728,9 +728,9 @@ sub check_undefined_symbols {
for (my $i = 0; $i < @names; $i++) {
if ($found_string && $hint) {
if (!$i) {
- print "--> $names[$i]\n";
+ print STDERR "--> $names[$i]\n";
} else {
- print " $names[$i]\n";
+ print STDERR " $names[$i]\n";
}
}
foreach my $re (@expr) {
@@ -760,17 +760,17 @@ sub check_undefined_symbols {
}
next if ($exact);
+ print "$file not found.\n" if (!$search_string || $found_string);
+
if ($hint && (!$search_string || $found_string)) {
my $what = $leaf{$leave}->{what};
$what =~ s/\xac/\n\t/g;
if ($leave ne "others") {
- print " more likely regexes:\n\t$what\n";
+ print STDERR " more likely regexes:\n\t$what\n";
} else {
- print " tested regexes:\n\t$what\n";
+ print STDERR " tested regexes:\n\t$what\n";
}
- next;
}
- print "$file not found.\n" if (!$search_string || $found_string);
}
}
@@ -852,7 +852,7 @@ sub undefined_symbols {
}
}
if ($search_string && $added) {
- print "What: $what\n" if ($what =~ m#$search_string#);
+ print STDERR "What: $what\n" if ($what =~ m#$search_string#);
}
}