Commit b27a936d authored by Kaixiong Yu's avatar Kaixiong Yu
Browse files

mm_types: Fix kabi breakage in struct mm_struct



Offering: HULK
hulk inclusion
category: bugfix
bugzilla: 190229

--------------------------------

Fix kabi breakage in struct mm_struct

Fixes: 8626086b82b4 ("[Backport] mm/ksm: fix ksm_zero_pages accounting")

Signed-off-by: default avatarKaixiong Yu <yukaixiong@huawei.com>
parent 4373c37b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -949,7 +949,8 @@ struct mm_struct {
		 * Represent how many empty pages are merged with kernel zero
		 * pages when enabling KSM use_zero_pages.
		 */
		atomic_long_t ksm_zero_pages;
		KABI_REPLACE(unsigned long ksm_zero_pages,
			    atomic_long_t ksm_zero_pages)
#endif /* CONFIG_KSM */
#ifdef CONFIG_LRU_GEN
		struct {