Brooklyn/include/linux/khugepaged.h

60 lines
1.6 KiB
C
Raw Normal View History

2022-04-02 18:17:33 +05:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_KHUGEPAGED_H
#define _LINUX_KHUGEPAGED_H
#include <linux/sched/coredump.h> /* MMF_VM_HUGEPAGE */
#ifdef CONFIG_TRANSPARENT_HUGEPAGE
extern struct attribute_group khugepaged_attr_group;
extern int khugepaged_init(void);
extern void khugepaged_destroy(void);
extern int start_stop_khugepaged(void);
2022-09-13 23:14:27 +05:00
extern void __khugepaged_enter(struct mm_struct *mm);
2022-04-02 18:17:33 +05:00
extern void __khugepaged_exit(struct mm_struct *mm);
2022-09-13 23:14:27 +05:00
extern void khugepaged_enter_vma(struct vm_area_struct *vma,
unsigned long vm_flags);
2022-04-02 18:17:33 +05:00
extern void khugepaged_min_free_kbytes_update(void);
#ifdef CONFIG_SHMEM
extern void collapse_pte_mapped_thp(struct mm_struct *mm, unsigned long addr);
#else
static inline void collapse_pte_mapped_thp(struct mm_struct *mm,
unsigned long addr)
{
}
#endif
2022-09-13 23:14:27 +05:00
static inline void khugepaged_fork(struct mm_struct *mm, struct mm_struct *oldmm)
2022-04-02 18:17:33 +05:00
{
if (test_bit(MMF_VM_HUGEPAGE, &oldmm->flags))
2022-09-13 23:14:27 +05:00
__khugepaged_enter(mm);
2022-04-02 18:17:33 +05:00
}
static inline void khugepaged_exit(struct mm_struct *mm)
{
if (test_bit(MMF_VM_HUGEPAGE, &mm->flags))
__khugepaged_exit(mm);
}
#else /* CONFIG_TRANSPARENT_HUGEPAGE */
2022-09-13 23:14:27 +05:00
static inline void khugepaged_fork(struct mm_struct *mm, struct mm_struct *oldmm)
2022-04-02 18:17:33 +05:00
{
}
static inline void khugepaged_exit(struct mm_struct *mm)
{
}
2022-09-13 23:14:27 +05:00
static inline void khugepaged_enter_vma(struct vm_area_struct *vma,
unsigned long vm_flags)
2022-04-02 18:17:33 +05:00
{
}
static inline void collapse_pte_mapped_thp(struct mm_struct *mm,
unsigned long addr)
{
}
static inline void khugepaged_min_free_kbytes_update(void)
{
}
#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
#endif /* _LINUX_KHUGEPAGED_H */