All of lore.kernel.org
 help / color / mirror / Atom feed
* + memcg-only-free-spare-array-when-readers-are-done.patch added to -mm tree
@ 2016-01-15 20:40 akpm
  2016-01-20  9:53 ` Michal Hocko
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2016-01-15 20:40 UTC (permalink / raw)
  To: maco, hannes, mhocko, stable, vdavydov, mm-commits


The patch titled
     From: Martijn Coenen <maco@google.com>
has been added to the -mm tree.  Its filename is
     memcg-only-free-spare-array-when-readers-are-done.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/memcg-only-free-spare-array-when-readers-are-done.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/memcg-only-free-spare-array-when-readers-are-done.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Martijn Coenen <maco@google.com>
Subject: memcg: Only free spare array when readers are done

A spare array holding mem cgroup threshold events is kept around
to make sure we can always safely deregister an event and have an
array to store the new set of events in.

In the scenario where we're going from 1 to 0 registered events, the
pointer to the primary array containing 1 event is copied to the spare
slot, and then the spare slot is freed because no events are left.
However, it is freed before calling synchronize_rcu(), which means
readers may still be accessing threshold->primary after it is freed.

Fixed by only freeing after synchronize_rcu().

Signed-off-by: Martijn Coenen <maco@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Vladimir Davydov <vdavydov@virtuozzo.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/memcontrol.c |   11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff -puN mm/memcontrol.c~memcg-only-free-spare-array-when-readers-are-done mm/memcontrol.c
--- a/mm/memcontrol.c~memcg-only-free-spare-array-when-readers-are-done
+++ a/mm/memcontrol.c
@@ -3491,16 +3491,17 @@ static void __mem_cgroup_usage_unregiste
 swap_buffers:
 	/* Swap primary and spare array */
 	thresholds->spare = thresholds->primary;
-	/* If all events are unregistered, free the spare array */
-	if (!new) {
-		kfree(thresholds->spare);
-		thresholds->spare = NULL;
-	}
 
 	rcu_assign_pointer(thresholds->primary, new);
 
 	/* To be sure that nobody uses thresholds */
 	synchronize_rcu();
+
+	/* If all events are unregistered, free the spare array */
+	if (!new) {
+		kfree(thresholds->spare);
+		thresholds->spare = NULL;
+	}
 unlock:
 	mutex_unlock(&memcg->thresholds_lock);
 }
_

Patches currently in -mm which might be from maco@google.com are

memcg-only-free-spare-array-when-readers-are-done.patch


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: + memcg-only-free-spare-array-when-readers-are-done.patch added to -mm tree
  2016-01-15 20:40 + memcg-only-free-spare-array-when-readers-are-done.patch added to -mm tree akpm
@ 2016-01-20  9:53 ` Michal Hocko
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Hocko @ 2016-01-20  9:53 UTC (permalink / raw)
  To: akpm; +Cc: maco, hannes, stable, vdavydov, mm-commits

On Fri 15-01-16 12:40:49, Andrew Morton wrote:
[...]
> From: Martijn Coenen <maco@google.com>
> Subject: memcg: Only free spare array when readers are done
> 
> A spare array holding mem cgroup threshold events is kept around
> to make sure we can always safely deregister an event and have an
> array to store the new set of events in.
> 
> In the scenario where we're going from 1 to 0 registered events, the
> pointer to the primary array containing 1 event is copied to the spare
> slot, and then the spare slot is freed because no events are left.
> However, it is freed before calling synchronize_rcu(), which means
> readers may still be accessing threshold->primary after it is freed.
> 
> Fixed by only freeing after synchronize_rcu().
> 
> Signed-off-by: Martijn Coenen <maco@google.com>
> Cc: Johannes Weiner <hannes@cmpxchg.org>
> Acked-by: Michal Hocko <mhocko@suse.com>
> Cc: Vladimir Davydov <vdavydov@virtuozzo.com>
> Cc: <stable@vger.kernel.org>

Fixes: 8c7577637ca3 ("memcg: free spare array to avoid memory leak")

will be helpful for those who will backport to stable trees.

Thanks!
-- 
Michal Hocko
SUSE Labs

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-01-20  9:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-15 20:40 + memcg-only-free-spare-array-when-readers-are-done.patch added to -mm tree akpm
2016-01-20  9:53 ` Michal Hocko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.