summaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c
diff options
context:
space:
mode:
authorTejun Heo2013-01-24 20:01:32 +0100
committerTejun Heo2013-01-24 20:01:32 +0100
commite2905b29122173b72b612c962b138e3fa07476b8 (patch)
tree66d7a8545f1fda113962c4a817673ff5b453c336 /kernel/workqueue.c
parentworkqueue: implement current_is_async() (diff)
downloadkernel-qcow2-linux-e2905b29122173b72b612c962b138e3fa07476b8.tar.gz
kernel-qcow2-linux-e2905b29122173b72b612c962b138e3fa07476b8.tar.xz
kernel-qcow2-linux-e2905b29122173b72b612c962b138e3fa07476b8.zip
workqueue: unexport work_cpu()
This function no longer has any external users. Unexport it. It will be removed later on. Signed-off-by: Tejun Heo <tj@kernel.org> Reviewed-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r--kernel/workqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 2ffa240052fa..fe0745f54fcd 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -449,6 +449,7 @@ static atomic_t unbound_pool_nr_running[NR_WORKER_POOLS] = {
};
static int worker_thread(void *__worker);
+static unsigned int work_cpu(struct work_struct *work);
static int worker_pool_pri(struct worker_pool *pool)
{
@@ -3419,13 +3420,12 @@ EXPORT_SYMBOL_GPL(workqueue_congested);
* RETURNS:
* CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
*/
-unsigned int work_cpu(struct work_struct *work)
+static unsigned int work_cpu(struct work_struct *work)
{
struct global_cwq *gcwq = get_work_gcwq(work);
return gcwq ? gcwq->cpu : WORK_CPU_NONE;
}
-EXPORT_SYMBOL_GPL(work_cpu);
/**
* work_busy - test whether a work is currently pending or running