rcu: Suppress __mpol_dup() false positive from RCU lockdep
authorPaul E. McKenney <[email protected]>
Thu, 4 Mar 2010 01:50:17 +0000 (17:50 -0800)
committerIngo Molnar <[email protected]>
Thu, 4 Mar 2010 11:07:34 +0000 (12:07 +0100)
Common code is used during task creation and after the task has
started running.  RCU protection is not needed during task
creation because no other CPU has access to the
under-construction task.  Provide the RCU protection anyway to
suppress the false positive, as there does not appear to be a
good way for the common code to recognize that the task is only
accessible to the CPU creating it.

Signed-off-by: Paul E. McKenney <[email protected]>
Cc: Paul Menage <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
LKML-Reference: <1267667418[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
mm/mempolicy.c

index 290fb5bf0440f7a5e0f05f4adeffd3decb785d00..3cec080faa23780c7ca457153272bef79b3a58e4 100644 (file)
@@ -1730,10 +1730,12 @@ struct mempolicy *__mpol_dup(struct mempolicy *old)
 
        if (!new)
                return ERR_PTR(-ENOMEM);
+       rcu_read_lock();
        if (current_cpuset_is_being_rebound()) {
                nodemask_t mems = cpuset_mems_allowed(current);
                mpol_rebind_policy(old, &mems);
        }
+       rcu_read_unlock();
        *new = *old;
        atomic_set(&new->refcnt, 1);
        return new;