Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/md/
Dmd.h293 struct md_thread *thread; /* management thread */
294 struct md_thread *sync_thread; /* doing resync or reconstruct */
608 struct md_thread { struct
609 void (*run) (struct md_thread *thread); argument
632 extern struct md_thread *md_register_thread( argument
633 void (*run)(struct md_thread *thread),
636 extern void md_unregister_thread(struct md_thread **threadp);
637 extern void md_wakeup_thread(struct md_thread *thread);
653 extern void md_do_sync(struct md_thread *thread);
Draid1.h113 struct md_thread *thread;
Draid10.h88 struct md_thread *thread;
Dmd-cluster.c61 struct md_thread *recovery_thread;
68 struct md_thread *recv_thread;
229 static void recover_bitmaps(struct md_thread *thread) in recover_bitmaps()
497 static void recv_daemon(struct md_thread *thread) in recv_daemon()
Draid5.h549 struct md_thread *thread;
Dmultipath.c321 static void multipathd(struct md_thread *thread) in multipathd()
Draid5-cache.c74 struct md_thread *reclaim_thread;
759 static void r5l_reclaim_thread(struct md_thread *thread) in r5l_reclaim_thread()
Dmd.c7082 static int md_thread(void *arg) in md_thread() function
7084 struct md_thread *thread = arg; in md_thread()
7123 void md_wakeup_thread(struct md_thread *thread) in md_wakeup_thread()
7133 struct md_thread *md_register_thread(void (*run) (struct md_thread *), in md_register_thread() argument
7136 struct md_thread *thread; in md_register_thread()
7138 thread = kzalloc(sizeof(struct md_thread), GFP_KERNEL); in md_register_thread()
7147 thread->tsk = kthread_run(md_thread, thread, in md_register_thread()
7159 void md_unregister_thread(struct md_thread **threadp) in md_unregister_thread()
7161 struct md_thread *thread = *threadp; in md_unregister_thread()
7753 void md_do_sync(struct md_thread *thread) in md_do_sync()
Draid1.c2379 static void raid1d(struct md_thread *thread) in raid1d()
Draid10.c2679 static void raid10d(struct md_thread *thread) in raid10d()
Draid5.c5831 static void raid5d(struct md_thread *thread) in raid5d()