Searched refs:cmm_thread_ptr (Results 1 - 2 of 2) sorted by relevance

/linux-master/arch/powerpc/platforms/pseries/
H A Dcmm.c87 static struct task_struct *cmm_thread_ptr; variable in typeref:struct:task_struct
450 if (cmm_thread_ptr)
451 kthread_stop(cmm_thread_ptr);
452 cmm_thread_ptr = NULL;
594 cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread");
595 if (IS_ERR(cmm_thread_ptr)) {
596 rc = PTR_ERR(cmm_thread_ptr);
620 if (cmm_thread_ptr)
621 kthread_stop(cmm_thread_ptr);
643 if (cmm_thread_ptr)
[all...]
/linux-master/arch/s390/mm/
H A Dcmm.c55 static struct task_struct *cmm_thread_ptr; variable in typeref:struct:task_struct
398 cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread");
399 if (!IS_ERR(cmm_thread_ptr))
402 rc = PTR_ERR(cmm_thread_ptr);
423 kthread_stop(cmm_thread_ptr);

Completed in 110 milliseconds