Re: [External] Re: [PATCH 3/3] mm/slub: Fix release all resources used by a slab cache

2020-06-15 Thread Muchun Song
On Mon, Jun 15, 2020 at 3:25 PM Joonsoo Kim wrote: > > 2020년 6월 15일 (월) 오후 3:41, Muchun Song 님이 작성: > > > > On Mon, Jun 15, 2020 at 2:23 PM Joonsoo Kim wrote: > > > > > > 2020년 6월 14일 (일) 오후 9:39, Muchun Song 님이 작성: > > > > > > > > The function of __kmem_cache_shutdown() is that release all resou

Re: [External] Re: [PATCH 3/3] mm/slub: Fix release all resources used by a slab cache

2020-06-15 Thread Joonsoo Kim
2020년 6월 15일 (월) 오후 3:41, Muchun Song 님이 작성: > > On Mon, Jun 15, 2020 at 2:23 PM Joonsoo Kim wrote: > > > > 2020년 6월 14일 (일) 오후 9:39, Muchun Song 님이 작성: > > > > > > The function of __kmem_cache_shutdown() is that release all resources > > > used by the slab cache, while currently it stop release r

Re: [External] Re: [PATCH 3/3] mm/slub: Fix release all resources used by a slab cache

2020-06-14 Thread Muchun Song
On Mon, Jun 15, 2020 at 2:23 PM Joonsoo Kim wrote: > > 2020년 6월 14일 (일) 오후 9:39, Muchun Song 님이 작성: > > > > The function of __kmem_cache_shutdown() is that release all resources > > used by the slab cache, while currently it stop release resources when > > the preceding node is not empty. > > > >

Re: [PATCH 3/3] mm/slub: Fix release all resources used by a slab cache

2020-06-14 Thread Joonsoo Kim
2020년 6월 14일 (일) 오후 9:39, Muchun Song 님이 작성: > > The function of __kmem_cache_shutdown() is that release all resources > used by the slab cache, while currently it stop release resources when > the preceding node is not empty. > > Signed-off-by: Muchun Song > --- > mm/slub.c | 7 --- > 1 file

[PATCH 3/3] mm/slub: Fix release all resources used by a slab cache

2020-06-14 Thread Muchun Song
The function of __kmem_cache_shutdown() is that release all resources used by the slab cache, while currently it stop release resources when the preceding node is not empty. Signed-off-by: Muchun Song --- mm/slub.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mm/slu