|
@@ -1090,7 +1090,7 @@ int ocfs2_journal_load(struct ocfs2_journal *journal, int local, int replayed)
|
|
|
/* Launch the commit thread */
|
|
|
if (!local) {
|
|
|
osb->commit_task = kthread_run(ocfs2_commit_thread, osb,
|
|
|
- "ocfs2cmt");
|
|
|
+ "ocfs2cmt-%s", osb->uuid_str);
|
|
|
if (IS_ERR(osb->commit_task)) {
|
|
|
status = PTR_ERR(osb->commit_task);
|
|
|
osb->commit_task = NULL;
|
|
@@ -1507,7 +1507,7 @@ void ocfs2_recovery_thread(struct ocfs2_super *osb, int node_num)
|
|
|
goto out;
|
|
|
|
|
|
osb->recovery_thread_task = kthread_run(__ocfs2_recovery_thread, osb,
|
|
|
- "ocfs2rec");
|
|
|
+ "ocfs2rec-%s", osb->uuid_str);
|
|
|
if (IS_ERR(osb->recovery_thread_task)) {
|
|
|
mlog_errno((int)PTR_ERR(osb->recovery_thread_task));
|
|
|
osb->recovery_thread_task = NULL;
|