aboutsummaryrefslogtreecommitdiffstats
path: root/include/spl
diff options
context:
space:
mode:
Diffstat (limited to 'include/spl')
-rw-r--r--include/spl/sys/vmsystm.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/spl/sys/vmsystm.h b/include/spl/sys/vmsystm.h
index 2b48fe0e3..6bdfc852a 100644
--- a/include/spl/sys/vmsystm.h
+++ b/include/spl/sys/vmsystm.h
@@ -33,8 +33,14 @@
#include <sys/types.h>
#include <asm/uaccess.h>
+#ifdef HAVE_TOTALRAM_PAGES_FUNC
+#define zfs_totalram_pages totalram_pages()
+#else
+#define zfs_totalram_pages totalram_pages
+#endif
+
#define membar_producer() smp_wmb()
-#define physmem totalram_pages
+#define physmem zfs_totalram_pages
#define freemem (nr_free_pages() + \
global_page_state(NR_INACTIVE_FILE) + \
global_page_state(NR_INACTIVE_ANON) + \