diff options
author | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
commit | b7d3622a39fde7658170b7f3cf6c6889bb8db30d (patch) | |
tree | 64f4e781ecb2a85d675e234072b988560bcd25f1 /kernel/irq/manage.c | |
parent | f3411cb2b2e396a41ed3a439863f028db7140a34 (diff) | |
parent | d8ec26d7f8287f5788a494f56e8814210f0e64be (diff) |
Merge tag 'v3.13' into for-3.15
Linux 3.13
Conflicts:
include/net/xfrm.h
Simple merge where v3.13 removed 'extern' from definitions and the audit
tree did s/u32/unsigned int/ to the same definitions.
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r-- | kernel/irq/manage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 514bcfd855a8..481a13c43b17 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -786,7 +786,7 @@ irq_forced_thread_fn(struct irq_desc *desc, struct irqaction *action) | |||
786 | } | 786 | } |
787 | 787 | ||
788 | /* | 788 | /* |
789 | * Interrupts explicitely requested as threaded interupts want to be | 789 | * Interrupts explicitly requested as threaded interrupts want to be |
790 | * preemtible - many of them need to sleep and wait for slow busses to | 790 | * preemtible - many of them need to sleep and wait for slow busses to |
791 | * complete. | 791 | * complete. |
792 | */ | 792 | */ |
@@ -956,7 +956,7 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new) | |||
956 | goto out_mput; | 956 | goto out_mput; |
957 | } | 957 | } |
958 | 958 | ||
959 | sched_setscheduler(t, SCHED_FIFO, ¶m); | 959 | sched_setscheduler_nocheck(t, SCHED_FIFO, ¶m); |
960 | 960 | ||
961 | /* | 961 | /* |
962 | * We keep the reference to the task struct even if | 962 | * We keep the reference to the task struct even if |