2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
8 * This file is part of the SPL, Solaris Porting Layer.
10 * The SPL is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
15 * The SPL is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * You should have received a copy of the GNU General Public License along
21 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
24 #ifndef _SPL_VMSYSTM_H
25 #define _SPL_VMSYSTM_H
27 #include <linux/mmzone.h>
29 #include <linux/swap.h>
30 #include <linux/highmem.h>
31 #include <linux/vmalloc.h>
32 #include <sys/types.h>
33 #include <asm/uaccess.h>
35 #ifdef HAVE_TOTALRAM_PAGES_FUNC
36 #define zfs_totalram_pages totalram_pages()
38 #define zfs_totalram_pages totalram_pages
41 #ifdef HAVE_TOTALHIGH_PAGES
42 #define zfs_totalhigh_pages totalhigh_pages()
44 #define zfs_totalhigh_pages totalhigh_pages
47 #define membar_producer() smp_wmb()
48 #define physmem zfs_totalram_pages
50 #define xcopyin(from, to, size) copy_from_user(to, from, size)
51 #define xcopyout(from, to, size) copy_to_user(to, from, size)
54 copyin(const void *from
, void *to
, size_t len
)
56 /* On error copyin routine returns -1 */
57 if (xcopyin(from
, to
, len
))
64 copyout(const void *from
, void *to
, size_t len
)
66 /* On error copyout routine returns -1 */
67 if (xcopyout(from
, to
, len
))
74 copyinstr(const void *from
, void *to
, size_t len
, size_t *done
)
79 return (-ENAMETOOLONG
);
81 /* XXX: Should return ENAMETOOLONG if 'strlen(from) > len' */
84 rc
= copyin(from
, to
, len
- 1);
91 #endif /* SPL_VMSYSTM_H */