aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/proc/task_mmu.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index ef44bb474ea2..187b3b5f242e 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -801,7 +801,14 @@ static inline void clear_soft_dirty(struct vm_area_struct *vma,
801 set_pte_at(vma->vm_mm, addr, pte, ptent); 801 set_pte_at(vma->vm_mm, addr, pte, ptent);
802 } 802 }
803} 803}
804#else
805static inline void clear_soft_dirty(struct vm_area_struct *vma,
806 unsigned long addr, pte_t *pte)
807{
808}
809#endif
804 810
811#if defined(CONFIG_MEM_SOFT_DIRTY) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
805static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma, 812static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
806 unsigned long addr, pmd_t *pmdp) 813 unsigned long addr, pmd_t *pmdp)
807{ 814{
@@ -815,14 +822,7 @@ static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
815 822
816 set_pmd_at(vma->vm_mm, addr, pmdp, pmd); 823 set_pmd_at(vma->vm_mm, addr, pmdp, pmd);
817} 824}
818
819#else 825#else
820
821static inline void clear_soft_dirty(struct vm_area_struct *vma,
822 unsigned long addr, pte_t *pte)
823{
824}
825
826static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma, 826static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
827 unsigned long addr, pmd_t *pmdp) 827 unsigned long addr, pmd_t *pmdp)
828{ 828{