Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sdio: give sdio irq thread a host specific name

There is one thread per host controller so make sure they all get
unique names.

Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>

+2 -1
+2 -1
drivers/mmc/core/sdio_irq.c
··· 159 159 if (!host->sdio_irqs++) { 160 160 atomic_set(&host->sdio_irq_thread_abort, 0); 161 161 host->sdio_irq_thread = 162 - kthread_run(sdio_irq_thread, host, "ksdiorqd"); 162 + kthread_run(sdio_irq_thread, host, "ksdioirqd/%s", 163 + mmc_hostname(host)); 163 164 if (IS_ERR(host->sdio_irq_thread)) { 164 165 int err = PTR_ERR(host->sdio_irq_thread); 165 166 host->sdio_irqs--;