Whamcloud - gitweb
11d8fab1880d3cca117d619514fdfaf500a29ee4
[fs/lustre-release.git] / libcfs / include / libcfs / linux / linux-mem.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * libcfs/include/libcfs/linux/linux-mem.h
33  *
34  * Basic library routines.
35  */
36
37 #ifndef __LIBCFS_LINUX_CFS_MEM_H__
38 #define __LIBCFS_LINUX_CFS_MEM_H__
39
40 #include <linux/mm.h>
41 #include <linux/vmalloc.h>
42 #include <linux/pagemap.h>
43 #include <linux/slab.h>
44 #ifdef HAVE_MM_INLINE
45 # include <linux/mm_inline.h>
46 #endif
47 #include <linux/sched.h>
48 #ifdef HAVE_SCHED_HEADERS
49 #include <linux/sched/mm.h>
50 #endif
51
52 #ifdef HAVE_TOTALRAM_PAGES_AS_FUNC
53  #ifndef cfs_totalram_pages
54   #define cfs_totalram_pages() totalram_pages()
55  #endif
56 #else
57  #ifndef cfs_totalram_pages
58   #define cfs_totalram_pages() totalram_pages
59  #endif
60 #endif
61
62 #ifndef HAVE_MEMALLOC_RECLAIM
63 static inline unsigned int memalloc_noreclaim_save(void)
64 {
65         unsigned int flags = current->flags & PF_MEMALLOC;
66
67         current->flags |= PF_MEMALLOC;
68         return flags;
69 }
70
71 static inline void memalloc_noreclaim_restore(unsigned int flags)
72 {
73         current->flags = (current->flags & ~PF_MEMALLOC) | flags;
74 }
75 #endif /* !HAVE_MEMALLOC_RECLAIM */
76
77 #ifndef HAVE_BITMAP_ALLOC
78 static inline unsigned long *bitmap_alloc(unsigned int nbits, gfp_t flags)
79 {
80         return kmalloc_array(BITS_TO_LONGS(nbits), sizeof(unsigned long),
81                              flags);
82 }
83
84 static inline unsigned long *bitmap_zalloc(unsigned int nbits, gfp_t flags)
85 {
86         return bitmap_alloc(nbits, flags | __GFP_ZERO);
87 }
88
89 static inline void bitmap_free(const unsigned long *bitmap)
90 {
91         kfree(bitmap);
92 }
93 #endif /* !HAVE_BITMAP_ALLOC */
94
95 /*
96  * Shrinker
97  */
98 #ifndef SHRINK_STOP
99 # define SHRINK_STOP (~0UL)
100 #endif
101
102 #ifndef HAVE_MMAP_LOCK
103 static inline void mmap_write_lock(struct mm_struct *mm)
104 {
105         down_write(&mm->mmap_sem);
106 }
107
108 static inline bool mmap_write_trylock(struct mm_struct *mm)
109 {
110         return down_write_trylock(&mm->mmap_sem) != 0;
111 }
112
113 static inline void mmap_write_unlock(struct mm_struct *mm)
114 {
115         up_write(&mm->mmap_sem);
116 }
117
118 static inline void mmap_read_lock(struct mm_struct *mm)
119 {
120         down_read(&mm->mmap_sem);
121 }
122
123 static inline bool mmap_read_trylock(struct mm_struct *mm)
124 {
125         return down_read_trylock(&mm->mmap_sem) != 0;
126 }
127
128 static inline void mmap_read_unlock(struct mm_struct *mm)
129 {
130         up_read(&mm->mmap_sem);
131 }
132 #endif
133
134 #endif /* __LINUX_CFS_MEM_H__ */