blob: 55fc14f54c1b13f531939f23eb7d2b3c3abffaee [file] [log] [blame]
#ifndef __BP_PAGE_REF_H
#define __BP_PAGE_REF_H
#include <linux/version.h>
#if LINUX_VERSION_IS_GEQ(4,6,0)
#include_next <linux/page_ref.h>
#else
static inline void page_ref_inc(struct page *page)
{
atomic_inc(&page->_count);
}
#endif
#endif /* __BP_PAGE_REF_H */