Re: [PATCH] proc: fixup PDE allocation bloat

2018-08-17 Thread Alexey Dobriyan
On Thu, Jul 19, 2018 at 05:06:55PM -0700, Shakeel Butt wrote: > On Sun, Jun 17, 2018 at 2:57 PM Alexey Dobriyan wrote: > > > > commit 24074a35c5c975c94cd9691ae962855333aac47f > > ("proc: Make inline name size calculation automatic") > > started to put PDE allocations into kmalloc-256 which is

Re: [PATCH] proc: fixup PDE allocation bloat

2018-08-17 Thread Alexey Dobriyan
On Thu, Jul 19, 2018 at 05:06:55PM -0700, Shakeel Butt wrote: > On Sun, Jun 17, 2018 at 2:57 PM Alexey Dobriyan wrote: > > > > commit 24074a35c5c975c94cd9691ae962855333aac47f > > ("proc: Make inline name size calculation automatic") > > started to put PDE allocations into kmalloc-256 which is

Re: [PATCH] proc: fixup PDE allocation bloat

2018-07-19 Thread Shakeel Butt
On Sun, Jun 17, 2018 at 2:57 PM Alexey Dobriyan wrote: > > commit 24074a35c5c975c94cd9691ae962855333aac47f > ("proc: Make inline name size calculation automatic") > started to put PDE allocations into kmalloc-256 which is unnecessary as > ~40 character names are very rare. > > Put allocation back

Re: [PATCH] proc: fixup PDE allocation bloat

2018-07-19 Thread Shakeel Butt
On Sun, Jun 17, 2018 at 2:57 PM Alexey Dobriyan wrote: > > commit 24074a35c5c975c94cd9691ae962855333aac47f > ("proc: Make inline name size calculation automatic") > started to put PDE allocations into kmalloc-256 which is unnecessary as > ~40 character names are very rare. > > Put allocation back

[PATCH] proc: fixup PDE allocation bloat

2018-06-17 Thread Alexey Dobriyan
commit 24074a35c5c975c94cd9691ae962855333aac47f ("proc: Make inline name size calculation automatic") started to put PDE allocations into kmalloc-256 which is unnecessary as ~40 character names are very rare. Put allocation back into kmalloc-192 cache for 64-bit non-debug builds. Put

[PATCH] proc: fixup PDE allocation bloat

2018-06-17 Thread Alexey Dobriyan
commit 24074a35c5c975c94cd9691ae962855333aac47f ("proc: Make inline name size calculation automatic") started to put PDE allocations into kmalloc-256 which is unnecessary as ~40 character names are very rare. Put allocation back into kmalloc-192 cache for 64-bit non-debug builds. Put