All of lore.kernel.org
 help / color / mirror / Atom feed
From: "David Hildenbrand (Arm)" <david@kernel.org>
To: "David S. Miller" <davem@davemloft.net>,
	Andreas Larsson <andreas@gaisler.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Lorenzo Stoakes <ljs@kernel.org>,
	"Liam R. Howlett" <liam@infradead.org>,
	Vlastimil Babka <vbabka@kernel.org>,
	Mike Rapoport <rppt@kernel.org>,
	Suren Baghdasaryan <surenb@google.com>,
	Michal Hocko <mhocko@suse.com>, Jann Horn <jannh@google.com>,
	Peter Zijlstra <peterz@infradead.org>
Cc: sparclinux@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-mm@kvack.org
Subject: Re: [PATCH 2/3] mm: drop pte_clear_not_present_full()
Date: Fri, 12 Jun 2026 11:35:32 +0200	[thread overview]
Message-ID: <ae6adf48-7769-4a16-b3b6-765141328a76@kernel.org> (raw)
In-Reply-To: <20260611-clear_not_present_full_ptes-v1-2-49865fc82629@kernel.org>


>   * Context: The caller holds the page table lock.  The PTEs are all not present.
>   * The PTEs are all in the same PMD.
> @@ -989,7 +974,7 @@ static inline void clear_not_present_full_ptes(struct mm_struct *mm,
>  		unsigned long addr, pte_t *ptep, unsigned int nr, int full)
>  {
>  	for (;;) {
> -		pte_clear_not_present_full(mm, addr, ptep, full);
> +		pte_clear(mm, addr, ptep);
>  		if (--nr == 0)
>  			break;
>  		ptep++;
> diff --git a/mm/madvise.c b/mm/madvise.c
> index cd9bb077072c..f3cda54c1d6a 100644
> --- a/mm/madvise.c
> +++ b/mm/madvise.c
> @@ -698,7 +698,7 @@ static int madvise_free_pte_range(pmd_t *pmd, unsigned long addr,
>  				clear_not_present_full_ptes(mm, addr, pte, nr, tlb->fullmm);
>  			} else if (softleaf_is_hwpoison(entry) ||
>  				   softleaf_is_poison_marker(entry)) {
> -				pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
> +				pte_clear(mm, addr, pte);

Some odd configs seem to complain about addr not being used (when pte_clear() is
just a define that doesn't use addr).

I'll silence that by doing something like (void)addr;

-- 
Cheers,

David


  parent reply	other threads:[~2026-06-12  9:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-11 11:50 [PATCH 0/3] mm: cleanup clear_not_present_full_ptes() David Hildenbrand (Arm)
2026-06-11 11:50 ` [PATCH 1/3] sparc/mm: drop custom pte_clear_not_present_full() David Hildenbrand (Arm)
2026-06-11 11:50 ` [PATCH 2/3] mm: drop pte_clear_not_present_full() David Hildenbrand (Arm)
2026-06-11 13:49   ` Oscar Salvador (SUSE)
2026-06-11 14:57     ` David Hildenbrand (Arm)
2026-06-12  9:35   ` David Hildenbrand (Arm) [this message]
2026-06-11 11:50 ` [PATCH 3/3] mm: cleanup clear_not_present_full_ptes() and rename to clear_non_present_ptes() David Hildenbrand (Arm)
2026-06-11 14:02   ` Oscar Salvador (SUSE)
2026-06-11 16:14     ` David Hildenbrand (Arm)
2026-06-12 10:36       ` Oscar Salvador (SUSE)

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=ae6adf48-7769-4a16-b3b6-765141328a76@kernel.org \
    --to=david@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=andreas@gaisler.com \
    --cc=davem@davemloft.net \
    --cc=jannh@google.com \
    --cc=liam@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=ljs@kernel.org \
    --cc=mhocko@suse.com \
    --cc=peterz@infradead.org \
    --cc=rppt@kernel.org \
    --cc=sparclinux@vger.kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.