linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Catalin Marinas <catalin.marinas@arm.com>
To: "zhaoyang.huang" <zhaoyang.huang@unisoc.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Matthew Wilcox <willy@infradead.org>,
	Zhaoyang Huang <huangzhaoyang@gmail.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	ke.wang@unisoc.com, steve.kang@unisoc.com
Subject: Re: [RFC PATCH] mm: track bad page via kmemleak
Date: Fri, 28 Oct 2022 12:57:25 +0100	[thread overview]
Message-ID: <Y1vDpfGrG1biTGoC@arm.com> (raw)
In-Reply-To: <1663679468-16757-1-git-send-email-zhaoyang.huang@unisoc.com>

(sorry, I missed this last month when it was posted)

On Tue, Sep 20, 2022 at 09:11:08PM +0800, zhaoyang.huang wrote:
> From: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
> 
> Bad pages will failed go back to allocator and leaved as orphan pages, track
> them down via kmemleak.
> 
> Signed-off-by: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
> ---
>  mm/page_alloc.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index e5486d4..24f682e 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -1408,7 +1408,7 @@ static __always_inline bool free_pages_prepare(struct page *page,
>  			__memcg_kmem_uncharge_page(page, order);
>  		reset_page_owner(page, order);
>  		page_table_check_free(page, order);
> -		return false;
> +		goto err;
>  	}
>  
>  	/*
> @@ -1442,7 +1442,7 @@ static __always_inline bool free_pages_prepare(struct page *page,
>  	if (check_free)
>  		bad += check_free_page(page);
>  	if (bad)
> -		return false;
> +		goto err;
>  
>  	page_cpupid_reset_last(page);
>  	page->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
> @@ -1486,6 +1486,10 @@ static __always_inline bool free_pages_prepare(struct page *page,
>  	debug_pagealloc_unmap_pages(page, 1 << order);
>  
>  	return true;
> +err:
> +	kmemleak_alloc(page_address(page), PAGE_SIZE << order, 1, GFP_KERNEL);
> +	return false;
> +
>  }

What's the aim of this tracking? First of all, that's a HWPoison page
and it should note be touched, so the min_count should be -1 otherwise
kmemleak will try to read it for references to other objects.

Now, if all you need is a list of the bad pages, I don't think that's
kmemleak's job. Maybe add them to a list and expose it somewhere else
via debugfs.

-- 
Catalin


      reply	other threads:[~2022-10-28 11:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-20 13:11 [RFC PATCH] mm: track bad page via kmemleak zhaoyang.huang
2022-10-28 11:57 ` Catalin Marinas [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y1vDpfGrG1biTGoC@arm.com \
    --to=catalin.marinas@arm.com \
    --cc=akpm@linux-foundation.org \
    --cc=huangzhaoyang@gmail.com \
    --cc=ke.wang@unisoc.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=steve.kang@unisoc.com \
    --cc=willy@infradead.org \
    --cc=zhaoyang.huang@unisoc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).