cpuidle: menu: Avoid computations when result will be discarded
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 15 Oct 2018 11:53:25 +0000 (13:53 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 18 Oct 2018 07:34:13 +0000 (09:34 +0200)
commitf1c8e410cdac5df42a7806e49efde2859a10fecd
treed2179335a5d344954c32ebfff457a39cb9ff12cb
parent12b65eadf0bd41cf0dbf460f13bcd310a81afe2b
cpuidle: menu: Avoid computations when result will be discarded

If the minimum interval taken into account in the average computation
loop in get_typical_interval() is less than the expected idle
duration determined so far, the resultant average cannot be greater
than that value as well and the entire return result of the function
is going to be discarded anyway going forward.

In that case, it is a waste of time to carry out the remaining
computations in get_typical_interval(), so avoid that by returning
early if the minimum interval is not below the expected idle duration.

No intentional changes of behavior.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpuidle/governors/menu.c