sunrpc: queue work on system_power_efficient_wq
authorKe Wang <ke.wang@spreadtrum.com>
Thu, 1 Sep 2016 07:30:26 +0000 (15:30 +0800)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Tue, 27 Sep 2016 18:35:36 +0000 (14:35 -0400)
commit77b00bc037e7c58d7a4ef791d1c7eeaf6f7a43e3
tree000d6726dd63faad486b810b2ec14dd481cd2045
parent8a64c4ef106d17805691e893642912041a622938
sunrpc: queue work on system_power_efficient_wq

sunrpc uses workqueue to clean cache regulary. There is no real dependency
of executing work on the cpu which queueing it.

On a idle system, especially for a heterogeneous systems like big.LITTLE,
it is observed that the big idle cpu was woke up many times just to service
this work, which against the principle of power saving. It would be better
if we can schedule it on a cpu which the scheduler believes to be the most
appropriate one.

After apply this patch, system_wq will be replaced by
system_power_efficient_wq for sunrpc. This functionality is enabled when
CONFIG_WQ_POWER_EFFICIENT is selected.

Signed-off-by: Ke Wang <ke.wang@spreadtrum.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
net/sunrpc/cache.c