Home
last modified time | relevance | path

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

/Linux-v4.19/arch/powerpc/platforms/pseries/
Dcmm.c112 static struct task_struct *cmm_thread_ptr; variable
485 if (cmm_thread_ptr) in cmm_reboot_notifier()
486 kthread_stop(cmm_thread_ptr); in cmm_reboot_notifier()
487 cmm_thread_ptr = NULL; in cmm_reboot_notifier()
702 cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread"); in cmm_init()
703 if (IS_ERR(cmm_thread_ptr)) { in cmm_init()
704 rc = PTR_ERR(cmm_thread_ptr); in cmm_init()
729 if (cmm_thread_ptr) in cmm_exit()
730 kthread_stop(cmm_thread_ptr); in cmm_exit()
753 if (cmm_thread_ptr) in cmm_set_disable()
[all …]
/Linux-v4.19/arch/s390/mm/
Dcmm.c58 static struct task_struct *cmm_thread_ptr; variable
452 cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread"); in cmm_init()
453 if (!IS_ERR(cmm_thread_ptr)) in cmm_init()
456 rc = PTR_ERR(cmm_thread_ptr); in cmm_init()
480 kthread_stop(cmm_thread_ptr); in cmm_exit()