lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20231024095234.1118e7dd@canb.auug.org.au>
Date:   Tue, 24 Oct 2023 09:52:34 +1100
From:   Stephen Rothwell <sfr@...b.auug.org.au>
To:     Catalin Marinas <catalin.marinas@....com>,
        Will Deacon <will@...nel.org>,
        Andrew Morton <akpm@...ux-foundation.org>
Cc:     Ard Biesheuvel <ardb@...nel.org>,
        Baolin Wang <baolin.wang@...ux.alibaba.com>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Linux Next Mailing List <linux-next@...r.kernel.org>
Subject: linux-next: manual merge of the arm64 tree with the mm-stable tree

Hi all,

Today's linux-next merge of the arm64 tree got a conflict in:

  arch/arm64/include/asm/tlb.h

between commit:

  55d2a0bd5ead ("mm: add statistics for PUD level pagetable")

from the mm-stable tree and commit:

  3399ee709734 ("arm64: mm: Add support for folding PUDs at runtime")

from the arm64 tree.

Thanks, Catalin for the heads up, I just used your resolution.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc arch/arm64/include/asm/tlb.h
index 846c563689a8,771077f34a6c..000000000000
--- a/arch/arm64/include/asm/tlb.h
+++ b/arch/arm64/include/asm/tlb.h
@@@ -96,10 -96,8 +96,12 @@@ static inline void __pmd_free_tlb(struc
  static inline void __pud_free_tlb(struct mmu_gather *tlb, pud_t *pudp,
  				  unsigned long addr)
  {
- 	struct ptdesc *ptdesc = virt_to_ptdesc(pudp);
 -	if (pgtable_l4_enabled())
 -		tlb_remove_ptdesc(tlb, virt_to_ptdesc(pudp));
++	if (pgtable_l4_enabled()) {
++		struct ptdesc *ptdesc = virt_to_ptdesc(pudp);
 +
- 	pagetable_pud_dtor(ptdesc);
- 	tlb_remove_ptdesc(tlb, ptdesc);
++		pagetable_pud_dtor(ptdesc);
++		tlb_remove_ptdesc(tlb, ptdesc);
++	}
  }
  #endif
  

Content of type "application/pgp-signature" skipped

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ