On Tue, Nov 24, 2015 at 12:36:17PM +0300, Vladimir Davydov wrote: > diff --git a/include/linux/rmap.h b/include/linux/rmap.h > index b9eedc63e9e6..77d1ba57d495 100644 > --- a/include/linux/rmap.h > +++ b/include/linux/rmap.h > @@ -219,9 +219,20 @@ static inline pte_t *page_check_address(struct page *page, struct mm_struct *mm, > * Used by idle page tracking to check if a page was referenced via page > * tables. > */ > +#ifdef CONFIG_TRANSPARENT_HUGEPAGE > bool page_check_address_transhuge(struct page *page, struct mm_struct *mm, > unsigned long address, pmd_t **pmdp, > pte_t **ptep, spinlock_t **ptlp); > +#else > +static inline bool page_check_address_transhuge(struct page *page, > + struct mm_struct *mm, unsigned long address, > + pmd_t **pmdp, pte_t **ptep, spinlock_t **ptlp) > +{ > + *ptep = page_check_address(page, mm, address, ptlp, 0); > + *pmdp = NULL; > + return !!*ptep; > +} > +#endif Tested-by: Johannes Weiner <hannes@xxxxxxxxxxx> -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>