* + hack.patch added to mm-unstable branch
@ 2024-06-25 21:55 Andrew Morton
2024-06-26 1:35 ` Lance Yang
0 siblings, 1 reply; 2+ messages in thread
From: Andrew Morton @ 2024-06-25 21:55 UTC (permalink / raw)
To: mm-commits, ioworker0, akpm, akpm
The patch titled
Subject: hack
has been added to the -mm mm-unstable branch. Its filename is
hack.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/hack.patch
This patch will later appear in the mm-unstable branch at
git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next via the mm-everything
branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there every 2-3 working days
------------------------------------------------------
From: Andrew Morton <akpm@linux-foundation.org>
Subject: hack
Date: Tue Jun 25 02:51:36 PM PDT 2024
um, Lance?
Cc: Lance Yang <ioworker0@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/huge_memory.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--- a/mm/huge_memory.c~hack
+++ a/mm/huge_memory.c
@@ -2696,7 +2696,6 @@ static bool __discard_anon_folio_pmd_loc
struct mm_struct *mm = vma->vm_mm;
int ref_count, map_count;
pmd_t orig_pmd = *pmdp;
- struct page *page;
if (folio_test_dirty(folio) || pmd_dirty(orig_pmd))
return false;
@@ -2732,7 +2731,7 @@ static bool __discard_anon_folio_pmd_loc
return false;
}
- folio_remove_rmap_pmd(folio, page, vma);
+ folio_remove_rmap_pmd(folio, pmd_page(orig_pmd), vma);
zap_deposited_table(mm, pmdp);
add_mm_counter(mm, MM_ANONPAGES, -HPAGE_PMD_NR);
if (vma->vm_flags & VM_LOCKED)
_
Patches currently in -mm which might be from akpm@linux-foundation.org are
hack.patch
mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix.patch
mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap-fix.patch
mm-use-folio_add_new_anon_rmap-if-folio_test_anonfolio==false-fix.patch
tools-mm-introduce-a-tool-to-assess-swap-entry-allocation-for-thp_swapout-fix.patch
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: + hack.patch added to mm-unstable branch
2024-06-25 21:55 + hack.patch added to mm-unstable branch Andrew Morton
@ 2024-06-26 1:35 ` Lance Yang
0 siblings, 0 replies; 2+ messages in thread
From: Lance Yang @ 2024-06-26 1:35 UTC (permalink / raw)
To: Andrew Morton; +Cc: mm-commits
On Wed, Jun 26, 2024 at 5:55 AM Andrew Morton <akpm@linux-foundation.org> wrote:
>
>
> The patch titled
> Subject: hack
> has been added to the -mm mm-unstable branch. Its filename is
> hack.patch
>
> This patch will shortly appear at
> https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/hack.patch
>
> This patch will later appear in the mm-unstable branch at
> git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
>
> Before you just go and hit "reply", please:
> a) Consider who else should be cc'ed
> b) Prefer to cc a suitable mailing list as well
> c) Ideally: find the original patch on the mailing list and do a
> reply-to-all to that, adding suitable additional cc's
>
> *** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
>
> The -mm tree is included into linux-next via the mm-everything
> branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> and is updated there every 2-3 working days
>
> ------------------------------------------------------
> From: Andrew Morton <akpm@linux-foundation.org>
> Subject: hack
> Date: Tue Jun 25 02:51:36 PM PDT 2024
>
> um, Lance?
LGTM.
I think this patch has fixed the bug[1] introduced by me.
[1] https://lore.kernel.org/all/20240622100057.3352-1-ioworker0@gmail.com/T/#u
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202406260514.SLhNM9kQ-lkp@intel.com/
Thanks again for stepping in to help!
Lance
>
> Cc: Lance Yang <ioworker0@gmail.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> mm/huge_memory.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> --- a/mm/huge_memory.c~hack
> +++ a/mm/huge_memory.c
> @@ -2696,7 +2696,6 @@ static bool __discard_anon_folio_pmd_loc
> struct mm_struct *mm = vma->vm_mm;
> int ref_count, map_count;
> pmd_t orig_pmd = *pmdp;
> - struct page *page;
>
> if (folio_test_dirty(folio) || pmd_dirty(orig_pmd))
> return false;
> @@ -2732,7 +2731,7 @@ static bool __discard_anon_folio_pmd_loc
> return false;
> }
>
> - folio_remove_rmap_pmd(folio, page, vma);
> + folio_remove_rmap_pmd(folio, pmd_page(orig_pmd), vma);
> zap_deposited_table(mm, pmdp);
> add_mm_counter(mm, MM_ANONPAGES, -HPAGE_PMD_NR);
> if (vma->vm_flags & VM_LOCKED)
> _
>
> Patches currently in -mm which might be from akpm@linux-foundation.org are
>
> hack.patch
> mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix.patch
> mm-extend-rmap-flags-arguments-for-folio_add_new_anon_rmap-fix.patch
> mm-use-folio_add_new_anon_rmap-if-folio_test_anonfolio==false-fix.patch
> tools-mm-introduce-a-tool-to-assess-swap-entry-allocation-for-thp_swapout-fix.patch
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-26 1:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-25 21:55 + hack.patch added to mm-unstable branch Andrew Morton
2024-06-26 1:35 ` Lance Yang
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.