]> www.infradead.org Git - users/willy/pagecache.git/commitdiff
mm: Remove 'First tail page' members from struct page
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Mon, 5 Sep 2022 00:59:57 +0000 (20:59 -0400)
committerMatthew Wilcox (Oracle) <willy@infradead.org>
Tue, 3 Jan 2023 04:00:56 +0000 (23:00 -0500)
All former users now use the folio equivalents, so remove them from
the definition of struct page.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
include/linux/mm_types.h
kernel/crash_core.c

index 381103c81cdf8f43cce74c9f79e8332d8bc2b1a7..de879a9f74a85a49ed77daafcc497e38b9c17e61 100644 (file)
@@ -140,16 +140,6 @@ struct page {
                };
                struct {        /* Tail pages of compound page */
                        unsigned long compound_head;    /* Bit zero is set */
-
-                       /* First tail page only */
-                       unsigned char compound_dtor;
-                       unsigned char compound_order;
-                       atomic_t compound_mapcount;
-                       atomic_t subpages_mapcount;
-                       atomic_t compound_pincount;
-#ifdef CONFIG_64BIT
-                       unsigned int compound_nr; /* 1 << compound_order */
-#endif
                };
                struct {        /* Second tail page of transparent huge page */
                        unsigned long _compound_pad_1;  /* compound_head */
@@ -401,14 +391,6 @@ FOLIO_MATCH(memcg_data, memcg_data);
                        offsetof(struct page, pg) + sizeof(struct page))
 FOLIO_MATCH(flags, _flags_1);
 FOLIO_MATCH(compound_head, _head_1);
-FOLIO_MATCH(compound_dtor, _folio_dtor);
-FOLIO_MATCH(compound_order, _folio_order);
-FOLIO_MATCH(compound_mapcount, _entire_mapcount);
-FOLIO_MATCH(subpages_mapcount, _nr_pages_mapped);
-FOLIO_MATCH(compound_pincount, _pincount);
-#ifdef CONFIG_64BIT
-FOLIO_MATCH(compound_nr, _folio_nr_pages);
-#endif
 #undef FOLIO_MATCH
 #define FOLIO_MATCH(pg, fl)                                            \
        static_assert(offsetof(struct folio, fl) ==                     \
index 87ef6096823f3a370c84c23059f9bb4df0155882..755f5f08ab3837634c8e2a3c3d9805ee8701db68 100644 (file)
@@ -455,8 +455,8 @@ static int __init crash_save_vmcoreinfo_init(void)
        VMCOREINFO_OFFSET(page, lru);
        VMCOREINFO_OFFSET(page, _mapcount);
        VMCOREINFO_OFFSET(page, private);
-       VMCOREINFO_OFFSET(page, compound_dtor);
-       VMCOREINFO_OFFSET(page, compound_order);
+       VMCOREINFO_OFFSET(folio, _folio_dtor);
+       VMCOREINFO_OFFSET(folio, _folio_order);
        VMCOREINFO_OFFSET(page, compound_head);
        VMCOREINFO_OFFSET(pglist_data, node_zones);
        VMCOREINFO_OFFSET(pglist_data, nr_zones);