Commit f8ec806b authored by Peter Zijlstra's avatar Peter Zijlstra

sched,mmc: Convert to sched_set_fifo*()

Because SCHED_FIFO is a broken scheduler model (see previous patches)
take away the priority field, the kernel can't possibly make an
informed decision.

In this case, use fifo_low, because it only cares about being above
SCHED_NORMAL. Effectively no change in behaviour.
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: default avatarIngo Molnar <mingo@kernel.org>
Acked-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 73f73cc2
...@@ -139,11 +139,10 @@ EXPORT_SYMBOL_GPL(sdio_signal_irq); ...@@ -139,11 +139,10 @@ EXPORT_SYMBOL_GPL(sdio_signal_irq);
static int sdio_irq_thread(void *_host) static int sdio_irq_thread(void *_host)
{ {
struct mmc_host *host = _host; struct mmc_host *host = _host;
struct sched_param param = { .sched_priority = 1 };
unsigned long period, idle_period; unsigned long period, idle_period;
int ret; int ret;
sched_setscheduler(current, SCHED_FIFO, &param); sched_set_fifo_low(current);
/* /*
* We want to allow for SDIO cards to work even on non SDIO * We want to allow for SDIO cards to work even on non SDIO
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment