kthread: rename probe_kthread_data() to kthread_probe_data()
[deliverable/linux.git] / kernel / kthread.c
index 9ff173dca1aef5e09fd640dc6757fee99c7a956c..0bec14aa844e1d17be1b7b24968b1853560fb3f5 100644 (file)
@@ -138,7 +138,7 @@ void *kthread_data(struct task_struct *task)
 }
 
 /**
- * probe_kthread_data - speculative version of kthread_data()
+ * kthread_probe_data - speculative version of kthread_data()
  * @task: possible kthread task in question
  *
  * @task could be a kthread task.  Return the data value specified when it
@@ -146,7 +146,7 @@ void *kthread_data(struct task_struct *task)
  * inaccessible for any reason, %NULL is returned.  This function requires
  * that @task itself is safe to dereference.
  */
-void *probe_kthread_data(struct task_struct *task)
+void *kthread_probe_data(struct task_struct *task)
 {
        struct kthread *kthread = to_kthread(task);
        void *data = NULL;
This page took 0.024555 seconds and 5 git commands to generate.