aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mempolicy.c
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2010-03-03 20:50:17 -0500
committerIngo Molnar <mingo@elte.hu>2010-03-04 06:07:34 -0500
commit99ee4ca746dda71326db7645463b4075ac1d665c (patch)
treeffee1bb0da458f7067a3207df0507be98dea7764 /mm/mempolicy.c
parente6033e3b307fcfae08408e0673266db38392bda4 (diff)
rcu: Suppress __mpol_dup() false positive from RCU lockdep
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 <paulmck@linux.vnet.ibm.com> Cc: Paul Menage <menage@google.com> Cc: laijs@cn.fujitsu.com Cc: dipankar@in.ibm.com Cc: mathieu.desnoyers@polymtl.ca Cc: josh@joshtriplett.org Cc: dvhltc@us.ibm.com Cc: niv@us.ibm.com Cc: peterz@infradead.org Cc: rostedt@goodmis.org Cc: Valdis.Kletnieks@vt.edu Cc: dhowells@redhat.com LKML-Reference: <1267667418-32233-2-git-send-email-paulmck@linux.vnet.ibm.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'mm/mempolicy.c')
-rw-r--r--mm/mempolicy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 290fb5bf0440..3cec080faa23 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -1730,10 +1730,12 @@ struct mempolicy *__mpol_dup(struct mempolicy *old)
1730 1730
1731 if (!new) 1731 if (!new)
1732 return ERR_PTR(-ENOMEM); 1732 return ERR_PTR(-ENOMEM);
1733 rcu_read_lock();
1733 if (current_cpuset_is_being_rebound()) { 1734 if (current_cpuset_is_being_rebound()) {
1734 nodemask_t mems = cpuset_mems_allowed(current); 1735 nodemask_t mems = cpuset_mems_allowed(current);
1735 mpol_rebind_policy(old, &mems); 1736 mpol_rebind_policy(old, &mems);
1736 } 1737 }
1738 rcu_read_unlock();
1737 *new = *old; 1739 *new = *old;
1738 atomic_set(&new->refcnt, 1); 1740 atomic_set(&new->refcnt, 1);
1739 return new; 1741 return new;