Skip to content

Commit

Permalink
sched: cleanup: Rename 'out_unlock' to 'out_free_new_mask'
Browse files Browse the repository at this point in the history
Nothing is locked there, so label's name only confuses a reader.

Signed-off-by: Kirill Tkhai <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Link: http://lkml.kernel.org/r/20140922183630.11015.59500.stgit@localhost
Signed-off-by: Ingo Molnar <[email protected]>
  • Loading branch information
Kirill Tkhai authored and Ingo Molnar committed Sep 24, 2014
1 parent 66339c3 commit 16303ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kernel/sched/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -4029,14 +4029,14 @@ long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
rcu_read_lock();
if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
rcu_read_unlock();
goto out_unlock;
goto out_free_new_mask;
}
rcu_read_unlock();
}

retval = security_task_setscheduler(p);
if (retval)
goto out_unlock;
goto out_free_new_mask;


cpuset_cpus_allowed(p, cpus_allowed);
Expand All @@ -4054,7 +4054,7 @@ long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)

if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
retval = -EBUSY;
goto out_unlock;
goto out_free_new_mask;
}
}
#endif
Expand All @@ -4073,7 +4073,7 @@ long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
goto again;
}
}
out_unlock:
out_free_new_mask:
free_cpumask_var(new_mask);
out_free_cpus_allowed:
free_cpumask_var(cpus_allowed);
Expand Down

0 comments on commit 16303ab

Please sign in to comment.