summaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorPaul E. McKenney2011-12-20 17:20:46 +0100
committerPaul E. McKenney2012-01-16 18:44:00 +0100
commit7061ca3b6c99fc78115560b9a10227c8c5fafc45 (patch)
treebdc970631a678cefa0902b42575c3e28b2594527 /include/linux/sched.h
parentrcu: Make rcutorture bool parameters really bool (core code) (diff)
downloadkernel-qcow2-linux-7061ca3b6c99fc78115560b9a10227c8c5fafc45.tar.gz
kernel-qcow2-linux-7061ca3b6c99fc78115560b9a10227c8c5fafc45.tar.xz
kernel-qcow2-linux-7061ca3b6c99fc78115560b9a10227c8c5fafc45.zip
sched: Add "const" to is_idle_task() parameter
This patch fixes a build warning in -next due to a const pointer being passed to is_idle_task(). Because is_idle_task() does not modify anything, this commit adds the "const" to is_idle_task()'s argument declaration. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 4a7e4d333a27..56fa25a5b1eb 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2074,7 +2074,7 @@ extern struct task_struct *idle_task(int cpu);
* is_idle_task - is the specified task an idle task?
* @tsk: the task in question.
*/
-static inline bool is_idle_task(struct task_struct *p)
+static inline bool is_idle_task(const struct task_struct *p)
{
return p->pid == 0;
}