Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

thermal/debugfs: Allow tze_seq_show() to print statistics for invalid trips

Commit a6258fde8de3 ("thermal/debugfs: Make tze_seq_show() skip invalid
trips and trips with no stats") modified tze_seq_show() to skip invalid
trips, but it overlooked the fact that a trip may become invalid during
a mitigation eposide involving it, in which case its statistics should
still be reported.

For this reason, remove the invalid trip temperature check from the
main loop in tze_seq_show().

The trips that have never been valid will still be skipped after this
change because there are no statistics to report for them.

Fixes: a6258fde8de3 ("thermal/debugfs: Make tze_seq_show() skip invalid trips and trips with no stats")
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

-4
-4
drivers/thermal/thermal_debugfs.c
··· 802 802 const struct thermal_trip *trip = &td->trip; 803 803 struct trip_stats *trip_stats; 804 804 805 - /* Skip invalid trips. */ 806 - if (trip->temperature == THERMAL_TEMP_INVALID) 807 - continue; 808 - 809 805 /* 810 806 * There is no possible mitigation happening at the 811 807 * critical trip point, so the stats will be always