aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/card/queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/card/queue.c')
-rw-r--r--drivers/mmc/card/queue.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
index 91c99e76c8cc..4e42d030e097 100644
--- a/drivers/mmc/card/queue.c
+++ b/drivers/mmc/card/queue.c
@@ -210,7 +210,9 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock
210 210
211 sema_init(&mq->thread_sem, 1); 211 sema_init(&mq->thread_sem, 1);
212 212
213 mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd"); 213 mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd/%d",
214 host->index);
215
214 if (IS_ERR(mq->thread)) { 216 if (IS_ERR(mq->thread)) {
215 ret = PTR_ERR(mq->thread); 217 ret = PTR_ERR(mq->thread);
216 goto free_bounce_sg; 218 goto free_bounce_sg;