On Tue, Jun 20, 2023 at 07:29:57PM +0200, Rafael J. Wysocki wrote: > > > > On Fri, May 19, 2023 at 5:27 AM Eduardo Valentin <evalenti@xxxxxxxxxx> wrote: > > > > From: Eduardo Valentin <eduval@xxxxxxxxxx> > > > > Currently the thermal governors are not allowed to > > react on temperature error events as the thermal core > > skips the handling and logs an error on kernel buffer. > > This patch adds the opportunity to report the errors > > when they happen to governors. > > > > Now, if a governor wants to react on temperature read > > errors, they can implement the .check_error() callback. > > Explaining the use case for this would help a lot. Yeah I agree. I also did not send the full series and will also add the governor changes for this in the next patch series. The use case here is primarily when temperature reads can fail. Common use case, not limited to though, is an I2C device temperature sensor. While it can be, in many cases, reliable, it is not always guaranteed to have a successful temperature read. In fact, it is common to see a sporadic temperature read failure, followed by successful reads. This patch series will enhance the core to allow temperature update error communication to the governor so the governor can have the opportunity to act upon sensor failure. -- All the best, Eduardo Valentin