Commit 4924627423d5e286136ad2520f5be536345ae590
Committed by
Ingo Molnar
1 parent
864616ee67
Exists in
master
and in
7 other branches
sched: Unindent labels
Labels should be on column 0. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Showing 2 changed files with 9 additions and 9 deletions Side-by-side Diff
kernel/sched.c
... | ... | @@ -4891,7 +4891,7 @@ |
4891 | 4891 | |
4892 | 4892 | cpuset_cpus_allowed(p, cpus_allowed); |
4893 | 4893 | cpumask_and(new_mask, in_mask, cpus_allowed); |
4894 | - again: | |
4894 | +again: | |
4895 | 4895 | retval = set_cpus_allowed_ptr(p, new_mask); |
4896 | 4896 | |
4897 | 4897 | if (!retval) { |
4898 | 4898 | |
... | ... | @@ -8141,9 +8141,9 @@ |
8141 | 8141 | |
8142 | 8142 | return 1; |
8143 | 8143 | |
8144 | - err_free_rq: | |
8144 | +err_free_rq: | |
8145 | 8145 | kfree(cfs_rq); |
8146 | - err: | |
8146 | +err: | |
8147 | 8147 | return 0; |
8148 | 8148 | } |
8149 | 8149 | |
8150 | 8150 | |
... | ... | @@ -8231,9 +8231,9 @@ |
8231 | 8231 | |
8232 | 8232 | return 1; |
8233 | 8233 | |
8234 | - err_free_rq: | |
8234 | +err_free_rq: | |
8235 | 8235 | kfree(rt_rq); |
8236 | - err: | |
8236 | +err: | |
8237 | 8237 | return 0; |
8238 | 8238 | } |
8239 | 8239 | |
... | ... | @@ -8591,7 +8591,7 @@ |
8591 | 8591 | raw_spin_unlock(&rt_rq->rt_runtime_lock); |
8592 | 8592 | } |
8593 | 8593 | raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
8594 | - unlock: | |
8594 | +unlock: | |
8595 | 8595 | read_unlock(&tasklist_lock); |
8596 | 8596 | mutex_unlock(&rt_constraints_mutex); |
8597 | 8597 |
kernel/sched_rt.c
... | ... | @@ -1140,7 +1140,7 @@ |
1140 | 1140 | for_each_leaf_rt_rq(rt_rq, rq) { |
1141 | 1141 | array = &rt_rq->active; |
1142 | 1142 | idx = sched_find_first_bit(array->bitmap); |
1143 | - next_idx: | |
1143 | +next_idx: | |
1144 | 1144 | if (idx >= MAX_RT_PRIO) |
1145 | 1145 | continue; |
1146 | 1146 | if (next && next->prio < idx) |
... | ... | @@ -1316,7 +1316,7 @@ |
1316 | 1316 | if (!next_task) |
1317 | 1317 | return 0; |
1318 | 1318 | |
1319 | - retry: | |
1319 | +retry: | |
1320 | 1320 | if (unlikely(next_task == rq->curr)) { |
1321 | 1321 | WARN_ON(1); |
1322 | 1322 | return 0; |
... | ... | @@ -1464,7 +1464,7 @@ |
1464 | 1464 | * but possible) |
1465 | 1465 | */ |
1466 | 1466 | } |
1467 | - skip: | |
1467 | +skip: | |
1468 | 1468 | double_unlock_balance(this_rq, src_rq); |
1469 | 1469 | } |
1470 | 1470 |