[PATCH v2 01/17] mm/slab: fix stale code comment
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> This patchset implements new freed object management way, that is, OBJFREELIST_SLAB. Purpose of it is to
View Article[PATCH v2 02/17] mm/slab: remove useless structure define
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> It is obsolete so remove it. Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Acked-by: Christoph Lame
View Article[PATCH v2 03/17] mm/slab: remove the checks for slab implementation bug
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Some of "#if DEBUG" are for reporting slab implementation bug rather than user usecase bug. It's not real
View Article[PATCH v2 04/17] mm/slab: activate debug_pagealloc in SLAB when it is...
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Christoph Lameter <cl@linux.com> Cc: Pekka Enberg
View Article[PATCH v2 05/17] mm/slab: use more appropriate condition check for...
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> debug_pagealloc debugging is related to SLAB_POISON flag rather than FORCED_DEBUG option, although FORCED_
View Article[PATCH v2 06/17] mm/slab: clean up DEBUG_PAGEALLOC processing code
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Currently, open code for checking DEBUG_PAGEALLOC cache is spread to some sites. It makes code unreadable
View Article[PATCH v2 07/17] mm/slab: alternative implementation for DEBUG_SLAB_LEAK
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> DEBUG_SLAB_LEAK is a debug option. It's current implementation requires status buffer so we need more mem
View Article[PATCH v2 08/17] mm/slab: remove object status buffer for DEBUG_SLAB_LEAK
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Now, we don't use object status buffer in any setup. Remove it. Signed-off-by: Joonsoo Kim <iamjoonsoo.ki
View Article[PATCH v2 09/17] mm/slab: put the freelist at the end of slab page
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Currently, the freelist is at the front of slab page. This requires extra space to meet object alignment
View Article[PATCH v2 10/17] mm/slab: align cache size first before determination of...
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Finding suitable OFF_SLAB candidate is more related to aligned cache size rather than original size. Same
View Article[PATCH v2 11/17] mm/slab: clean up cache type determination
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Current cache type determination code is open-code and looks not understandable. Following patch will int
View Article[PATCH v2 12/17] mm/slab: do not change cache size if debug pagealloc...
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> We can fail to setup off slab in some conditions. Even in this case, debug pagealloc increases cache size
View Article[PATCH v2 13/17] mm/slab: make criteria for off slab determination robust and...
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> To become an off slab, there are some constraints to avoid bootstrapping problem and recursive call. This
View Article[PATCH v2 14/17] mm/slab: factor out slab list fixup code
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Slab list should be fixed up after object is detached from the slab and this happens at two places. They
View Article[PATCH v2 15/17] mm/slab: factor out debugging initialization in...
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> cache_init_objs() will be changed in following patch and current form doesn't fit well for that change. S
View Article[PATCH v2 16/17] mm/slab: introduce new slab management type, OBJFREELIST_SLAB
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> SLAB needs a array to manage freed objects in a slab. It is only used if some objects are freed so we can
View Article[PATCH v2 17/17] mm/slab: avoid returning values by reference
From: Joonsoo Kim <iamjoonsoo.kim@lge.com> Returing values by reference is bad practice. Instead, just use function return value. Suggested-by: Chri
View Article[PATCH v4 0/6] rockchip: power-domain: fix pm domain for support RK3399 SoC
fix some idle handling support sub-power domain add rk3399-power.h modify document for RK3399 Soc modify power domain for RK3399 SoC Elaine Zhang (6)
View Article[PATCH v4 1/6] rockchip: power-domain: make idle handling optional
Not all new socs need to handle idle states on domain state changes, so add the possibility to make them optional. Signed-off-by: Elaine Zhang <zhang
View Article[PATCH v4 2/6] power-domain: allow domains only handling idle requests
On some Rockchip SoC there exist child-domains only handling their idle state with the actual power-state handled by a parent-domain. So allow such t
View Article