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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 19 Jan 2021 17:30:44 -0800 From: Mike Kravetz <mike.kravetz@...cle.com> To: linux-kernel@...r.kernel.org, linux-mm@...ck.org Cc: Michal Hocko <mhocko@...nel.org>, Naoya Horiguchi <n-horiguchi@...jp.nec.com>, Muchun Song <songmuchun@...edance.com>, David Hildenbrand <david@...hat.com>, Oscar Salvador <osalvador@...e.de>, Matthew Wilcox <willy@...radead.org>, Andrew Morton <akpm@...ux-foundation.org>, Mike Kravetz <mike.kravetz@...cle.com> Subject: [PATCH v2 0/5] create hugetlb flags to consolidate state While discussing a series of hugetlb fixes in [1], it became evident that the hugetlb specific page state information is stored in a somewhat haphazard manner. Code dealing with state information would be easier to read, understand and maintain if this information was stored in a consistent manner. This series uses page.private of the hugetlb head page for storing a set of hugetlb specific page flags. Routines are priovided for test, set and clear of the flags. [1] https://lore.kernel.org/r/20210106084739.63318-1-songmuchun@bytedance.com Patch -> v2 Went back to functions similar to 'normal' page flags (Matthew/Muchun) Decided to leave check in unmap_and_move_huge_page and print warning RFC -> PATCH Simplified to use a single set of flag manipulation routines (Oscar) Moved flags and routines to hugetlb.h (Muchun) Changed format of page flag names (Muchun) Changed subpool routine names (Matthew) More comments in code (Oscar) Based on v5.11-rc3-mmotm-2021-01-12-01-57 Mike Kravetz (5): hugetlb: use page.private for hugetlb specific page flags hugetlb: convert page_huge_active() HPageMigratable flag hugetlb: only set HPageMigratable for migratable hstates hugetlb: convert PageHugeTemporary() to HPageTemporary flag hugetlb: convert PageHugeFreed to HPageFreed flag fs/hugetlbfs/inode.c | 14 +--- include/linux/hugetlb.h | 95 +++++++++++++++++++++++ include/linux/page-flags.h | 6 -- mm/hugetlb.c | 149 +++++++++++-------------------------- mm/memory_hotplug.c | 8 +- mm/migrate.c | 9 +-- 6 files changed, 154 insertions(+), 127 deletions(-) -- 2.29.2
Powered by blists - more mailing lists