sched: cleanup: Rename 'out_unlock' to 'out_free_new_mask'
authorKirill Tkhai <ktkhai@parallels.com>
Mon, 22 Sep 2014 18:36:30 +0000 (22:36 +0400)
committerIngo Molnar <mingo@kernel.org>
Wed, 24 Sep 2014 12:47:10 +0000 (14:47 +0200)
Nothing is locked there, so label's name only confuses a reader.

Signed-off-by: Kirill Tkhai <ktkhai@parallels.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20140922183630.11015.59500.stgit@localhost
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/sched/core.c

index f0adb038170bc7299799d30755c82e4658b468cd..316127acefc6e735ba34876606ce040db4ad5408 100644 (file)
@@ -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);
@@ -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
@@ -4073,7 +4073,7 @@ again:
                        goto again;
                }
        }
-out_unlock:
+out_free_new_mask:
        free_cpumask_var(new_mask);
 out_free_cpus_allowed:
        free_cpumask_var(cpus_allowed);