diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2025-02-08 12:55:42 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2025-02-09 10:56:00 -0600 |
commit | 5132681dcd96b2a8c357b6e5d93e9876924bb80b (patch) | |
tree | ea1d924ed54d8f31fdf29785b336253310a0dac1 /tools/perf/scripts/python/export-to-sqlite.py | |
parent | b312d880fb462d4759396950865ec914de9d253c (diff) | |
download | linux-5132681dcd96b2a8c357b6e5d93e9876924bb80b.tar.gz linux-5132681dcd96b2a8c357b6e5d93e9876924bb80b.tar.bz2 linux-5132681dcd96b2a8c357b6e5d93e9876924bb80b.zip |
tools/power turbostat: Fix names matching
Fix the 'find_msrp_by_name()' function which returns incorrect matches for
cases like this:
s1 = "C1-";
find_msrp_by_name(head, s1);
Inside 'find_msrp_by_name()':
...
s2 = "C1"
if !(strcnmp(s1, s2, len(s2)))
// Incorrect match!
return mp;
Full strings should be match istead. Switch to 'strcmp()' to fix the problem.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
0 files changed, 0 insertions, 0 deletions