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: <20220104011734.21714-1-richard.weiyang@gmail.com>
Date:   Tue,  4 Jan 2022 01:17:34 +0000
From:   Wei Yang <richard.weiyang@...il.com>
To:     peterz@...radead.org, willy@...radead.org, vbabka@...e.cz,
        akpm@...ux-foundation.org, dhowells@...hat.com, will@...nel.org,
        linyunsheng@...wei.com, feng.tang@...el.com, ebiederm@...ssion.com,
        aarcange@...hat.com
Cc:     linux-kernel@...r.kernel.org, Wei Yang <richard.weiyang@...il.com>
Subject: [PATCH] mm: page->mapping folio->mapping should have the same offset

In commit 7b230db3b8d3 ("mm: Introduce struct folio"), folio is
introduced. This is a folio of page, so we need to make sure those
members of folio should be at the same offset in page.

The offset of mapping is not checked. This patch just add it.

Signed-off-by: Wei Yang <richard.weiyang@...il.com>

---
BYW, I am not sure why we compare ->compound_head and ->lru?
---
 include/linux/mm_types.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index c3a6e6209600..0a2de709fe40 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -288,6 +288,7 @@ static_assert(sizeof(struct page) == sizeof(struct folio));
 	static_assert(offsetof(struct page, pg) == offsetof(struct folio, fl))
 FOLIO_MATCH(flags, flags);
 FOLIO_MATCH(lru, lru);
+FOLIO_MATCH(mapping, mapping);
 FOLIO_MATCH(compound_head, lru);
 FOLIO_MATCH(index, index);
 FOLIO_MATCH(private, private);
-- 
2.33.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ