OSDN Git Service

cpuidle: Do not use CPUIDLE_DRIVER_STATE_START in cpuidle.c
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 28 May 2015 02:09:24 +0000 (04:09 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Sat, 30 May 2015 00:15:21 +0000 (02:15 +0200)
commit7d51d97925e6cbfa2f7f14e3e3aa363b35ee5c24
treea95d7d6d2440aac67608c965b7386d0f160a04b6
parent0d94039fabccaa81d87eafdac509d0dda4df2f7b
cpuidle: Do not use CPUIDLE_DRIVER_STATE_START in cpuidle.c

The CPUIDLE_DRIVER_STATE_START symbol is defined as 1 only if
CONFIG_ARCH_HAS_CPU_RELAX is set, otherwise it is defined as 0.
However, if CONFIG_ARCH_HAS_CPU_RELAX is set, the first (index 0)
entry in the cpuidle driver's table of states is overwritten with
the default "poll" entry by the core.  The "state" defined by the
"poll" entry doesn't provide ->enter_dead and ->enter_freeze
callbacks and its exit_latency is 0.

For this reason, it is not necessary to use CPUIDLE_DRIVER_STATE_START
in cpuidle_play_dead() (->enter_dead is NULL, so the "poll state"
will be skipped by the loop).

It also is arguably unuseful to return states with exit_latency
equal to 0 from find_deepest_state(), so the function can be modified
to start the loop from index 0 and the "poll state" will be skipped by
it as a result of the check against latency_req.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Preeti U Murthy <preeti@linux.vnet.ibm.com>
drivers/cpuidle/cpuidle.c