Home
last modified time | relevance | path

Searched refs:md_thread (Results 1 – 10 of 10) sorted by relevance

/linux-4.1.27/drivers/md/
Dmd.h283 struct md_thread *thread; /* management thread */
284 struct md_thread *sync_thread; /* doing resync or reconstruct */
602 struct md_thread { struct
603 void (*run) (struct md_thread *thread); argument
626 extern struct md_thread *md_register_thread( argument
627 void (*run)(struct md_thread *thread),
630 extern void md_unregister_thread(struct md_thread **threadp);
631 extern void md_wakeup_thread(struct md_thread *thread);
647 extern void md_do_sync(struct md_thread *thread);
Draid1.h108 struct md_thread *thread;
Draid10.h82 struct md_thread *thread;
Dmd-cluster.c59 struct md_thread *recovery_thread;
66 struct md_thread *recv_thread;
222 static void recover_bitmaps(struct md_thread *thread) in recover_bitmaps()
464 static void recv_daemon(struct md_thread *thread) in recv_daemon()
Draid5.h539 struct md_thread *thread;
Dmultipath.c331 static void multipathd(struct md_thread *thread) in multipathd()
Dmd.c6945 static int md_thread(void *arg) in md_thread() function
6947 struct md_thread *thread = arg; in md_thread()
6986 void md_wakeup_thread(struct md_thread *thread) in md_wakeup_thread()
6996 struct md_thread *md_register_thread(void (*run) (struct md_thread *), in md_register_thread() argument
6999 struct md_thread *thread; in md_register_thread()
7001 thread = kzalloc(sizeof(struct md_thread), GFP_KERNEL); in md_register_thread()
7010 thread->tsk = kthread_run(md_thread, thread, in md_register_thread()
7022 void md_unregister_thread(struct md_thread **threadp) in md_unregister_thread()
7024 struct md_thread *thread = *threadp; in md_unregister_thread()
7604 void md_do_sync(struct md_thread *thread) in md_do_sync()
Draid1.c2409 static void raid1d(struct md_thread *thread) in raid1d()
Draid10.c2787 static void raid10d(struct md_thread *thread) in raid10d()
Draid5.c5809 static void raid5d(struct md_thread *thread) in raid5d()