Message ID | 20230407042454.1449599-1-shr@devkernel.io (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [v1] mm: Fix: remove ksm_add_mm and ksm_add_vmas | expand |
diff --git a/include/linux/ksm.h b/include/linux/ksm.h index 4c32f9bca723..a93500aac371 100644 --- a/include/linux/ksm.h +++ b/include/linux/ksm.h @@ -67,18 +67,10 @@ const char *ksm_merge_type(struct mm_struct *mm); #else /* !CONFIG_KSM */ -static inline int ksm_add_mm(struct mm_struct *mm) -{ -} - static inline void ksm_add_vma(struct vm_area_struct *vma) { } -static inline void ksm_add_vmas(struct mm_struct *mm) -{ -} - static inline int ksm_fork(struct mm_struct *mm, struct mm_struct *oldmm) { return 0;
The function ksm_add_mm() and ksm_add_vmas() don't need to be defined when CONFIG_KSM is not defined. Signed-off-by: Stefan Roesch <shr@devkernel.io> --- include/linux/ksm.h | 8 -------- 1 file changed, 8 deletions(-)