[PATCH 1/1] fs/proc: remove redudant comments from /proc/bootconfig

2024-01-02 Thread Zhenhua Huang
("fs/proc: Add boot loader arguments as comment to /proc/bootconfig") Signed-off-by: Zhenhua Huang --- fs/proc/bootconfig.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/proc/bootconfig.c b/fs/proc/bootconfig.c index 902b326..e5635a6 100644 --- a/f

Re: [PATCH] lib: stackdepot: Add support to configure STACK_HASH_SIZE

2020-11-19 Thread Zhenhua Huang
On Fri, Nov 20, 2020 at 01:04:23PM +0800, Minchan Kim wrote: > On Thu, Nov 19, 2020 at 11:34:32AM +0800, Zhenhua Huang wrote: > > On Wed, Nov 04, 2020 at 07:27:03AM +0800, Minchan Kim wrote: > > > Sorry if this mail corrupts the mail thread or had heavy mangling > > >

Re: [PATCH] lib: stackdepot: Add support to configure STACK_HASH_SIZE

2020-11-18 Thread Zhenhua Huang
On Wed, Nov 04, 2020 at 07:27:03AM +0800, Minchan Kim wrote: > Sorry if this mail corrupts the mail thread or had heavy mangling > since I lost this mail from my mailbox so I am sending this mail by > web gmail. > > On Thu, Oct 22, 2020 at 10:18 AM wrote: > > > > From: Yogesh Lal > > > > Use STA

Re: [PATCH] mm: fix page_owner initializing issue for arm32

2020-10-26 Thread Zhenhua Huang
On Mon, Oct 26, 2020 at 05:39:34PM +0800, Mike Rapoport wrote: > On Mon, Oct 26, 2020 at 03:12:55PM +0800, Zhenhua Huang wrote: > > Hi Mike, > > > > On Sun, Oct 25, 2020 at 11:42:53PM +0800, Mike Rapoport wrote: > > > On Fri, Oct 16, 2020 at 05:14:00PM +0800, Zhe

Re: [PATCH] mm: fix page_owner initializing issue for arm32

2020-10-26 Thread Zhenhua Huang
Hi Mike, On Sun, Oct 25, 2020 at 11:42:53PM +0800, Mike Rapoport wrote: > On Fri, Oct 16, 2020 at 05:14:00PM +0800, Zhenhua Huang wrote: > > Page owner of pages used by page owner itself used is missing on arm32 > targets. > > The reason is dummy_handle and failure_handle

Re: [PATCH] mm: fix page_owner initializing issue for arm32

2020-10-26 Thread Zhenhua Huang
Hi Mike, On Sun, Oct 25, 2020 at 11:42:53PM +0800, Mike Rapoport wrote: > On Fri, Oct 16, 2020 at 05:14:00PM +0800, Zhenhua Huang wrote: > > Page owner of pages used by page owner itself used is missing on arm32 > targets. > > The reason is dummy_handle and failure_handle

[PATCH v2] mm: fix page_owner initializing issue for arm32

2020-10-19 Thread Zhenhua Huang
: Zhenhua Huang --- include/linux/page_ext.h | 8 init/main.c | 2 ++ mm/page_ext.c| 10 -- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/include/linux/page_ext.h b/include/linux/page_ext.h index cfce186..aff81ba 100644 --- a/include/linux

[PATCH v2] mm: fix page_owner initializing issue for arm32

2020-10-19 Thread Zhenhua Huang
allocated via order 2, mask 0x6202c0(GFP_USER|__GFP_NOWARN), pid 1006, ts 67278156558 ns PFN 543776 type Unmovable Block 531 type Unmovable Flags 0x0() init_page_owner+0x28/0x2f8 invoke_init_callbacks_flatmem+0x24/0x34 start_kernel+0x33c/0x5d8 (null) Signed-off-by: Zhenhua Huang --- include/linux

Re: [PATCH] mm: fix page_owner initializing issue for arm32

2020-10-19 Thread Zhenhua Huang
Fri, Oct 16, 2020 at 06:41:04PM +0800, Vlastimil Babka wrote: > On 10/16/20 11:14 AM, Zhenhua Huang wrote: > >Page owner of pages used by page owner itself used is missing on arm32 > >targets. > >The reason is dummy_handle and failure_handle is not initialized > >corre

[PATCH] mm: fix page_owner initializing issue for arm32

2020-10-16 Thread Zhenhua Huang
allocated via order 2, mask 0x6202c0(GFP_USER|__GFP_NOWARN), pid 1006, ts 67278156558 ns PFN 543776 type Unmovable Block 531 type Unmovable Flags 0x0() init_page_owner+0x28/0x2f8 invoke_init_callbacks_flatmem+0x24/0x34 start_kernel+0x33c/0x5d8 (null) Signed-off-by: Zhenhua Huang --- include/linux