]> git.baikalelectronics.ru Git - kernel.git/commit
Revert "slub: do not put a slab to cpu partial list when cpu_partial is 0"
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 8 Aug 2013 16:06:37 +0000 (09:06 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 8 Aug 2013 16:06:37 +0000 (09:06 -0700)
commit8e3a5cbeb7806c07743a73157a25767ca6f21cf3
tree4838e5a5d97c5cc94330bc65249ee147ab93afae
parentfd49ba518a07d71016960da9b02226339aab4638
Revert "slub: do not put a slab to cpu partial list when cpu_partial is 0"

This reverts commit fe2878e20b2b6964cced6a0482187335f15d9c4b.

This commit caused Steven Rostedt's hackbench runs to run out of memory
due to a leak.  As noted by Joonsoo Kim, it is buggy in the following
scenario:

 "I guess, you may set 0 to all kmem caches's cpu_partial via sysfs,
  doesn't it?

  In this case, memory leak is possible in following case.  Code flow of
  possible leak is follwing case.

   * in __slab_free()
   1. (!new.inuse || !prior) && !was_frozen
   2. !kmem_cache_debug && !prior
   3. new.frozen = 1
   4. after cmpxchg_double_slab, run the (!n) case with new.frozen=1
   5. with this patch, put_cpu_partial() doesn't do anything,
      because this cache's cpu_partial is 0
   6. return

  In step 5, leak occur"

And Steven does indeed have cpu_partial set to 0 due to RT testing.

Joonsoo is cooking up a patch, but everybody agrees that reverting this
for now is the right thing to do.

Reported-and-bisected-by: Steven Rostedt <rostedt@goodmis.org>
Acked-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Acked-by: Pekka Enberg <penberg@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/slub.c