Home
last modified time | relevance | path

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

/Linux-v6.6/arch/powerpc/platforms/pseries/
Dcmm.c87 static struct task_struct *cmm_thread_ptr; variable
450 if (cmm_thread_ptr) in cmm_reboot_notifier()
451 kthread_stop(cmm_thread_ptr); in cmm_reboot_notifier()
452 cmm_thread_ptr = NULL; in cmm_reboot_notifier()
594 cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread"); in cmm_init()
595 if (IS_ERR(cmm_thread_ptr)) { in cmm_init()
596 rc = PTR_ERR(cmm_thread_ptr); in cmm_init()
620 if (cmm_thread_ptr) in cmm_exit()
621 kthread_stop(cmm_thread_ptr); in cmm_exit()
643 if (cmm_thread_ptr) in cmm_set_disable()
[all …]
/Linux-v6.6/arch/s390/mm/
Dcmm.c55 static struct task_struct *cmm_thread_ptr; variable
399 cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread"); in cmm_init()
400 if (!IS_ERR(cmm_thread_ptr)) in cmm_init()
403 rc = PTR_ERR(cmm_thread_ptr); in cmm_init()
424 kthread_stop(cmm_thread_ptr); in cmm_exit()