From: Ethan Du Date: Thu, 30 Sep 2010 22:40:27 +0000 (-0400) Subject: mmc: name mmc queue thread by host index X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=de528fa3f94da95f7667eb1583178268c3a403d0;p=linux-beck.git mmc: name mmc queue thread by host index Usually there are multiple mmc host controllers; rename mmc queue thread by host index so we can easily identify which controller it belongs to. Signed-off-by: Ethan Du Signed-off-by: Chris Ball --- 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 sema_init(&mq->thread_sem, 1); - mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd"); + mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd/%d", + host->index); + if (IS_ERR(mq->thread)) { ret = PTR_ERR(mq->thread); goto free_bounce_sg;