Whamcloud - gitweb
LU-9680 net: Netlink improvements
[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  *
31  * libcfs/include/libcfs/linux/linux-mem.h
32  *
33  * Basic library routines.
34  */
35
36 #ifndef __LIBCFS_LINUX_CFS_MEM_H__
37 #define __LIBCFS_LINUX_CFS_MEM_H__
38
39 #include <linux/mm.h>
40 #include <linux/vmalloc.h>
41 #include <linux/pagemap.h>
42 #include <linux/slab.h>
43 #ifdef HAVE_MM_INLINE
44 # include <linux/mm_inline.h>
45 #endif
46 #include <linux/sched.h>
47 #ifdef HAVE_SCHED_HEADERS
48 #include <linux/sched/mm.h>
49 #endif
50
51 #ifdef HAVE_TOTALRAM_PAGES_AS_FUNC
52  #ifndef cfs_totalram_pages
53   #define cfs_totalram_pages() totalram_pages()
54  #endif
55 #else
56  #ifndef cfs_totalram_pages
57   #define cfs_totalram_pages() totalram_pages
58  #endif
59 #endif
60
61 #ifndef HAVE_MEMALLOC_RECLAIM
62 static inline unsigned int memalloc_noreclaim_save(void)
63 {
64         unsigned int flags = current->flags & PF_MEMALLOC;
65
66         current->flags |= PF_MEMALLOC;
67         return flags;
68 }
69
70 static inline void memalloc_noreclaim_restore(unsigned int flags)
71 {
72         current->flags = (current->flags & ~PF_MEMALLOC) | flags;
73 }
74 #endif /* !HAVE_MEMALLOC_RECLAIM */
75
76 #ifndef HAVE_BITMAP_ALLOC
77 static inline unsigned long *bitmap_alloc(unsigned int nbits, gfp_t flags)
78 {
79         return kmalloc_array(BITS_TO_LONGS(nbits), sizeof(unsigned long),
80                              flags);
81 }
82
83 static inline unsigned long *bitmap_zalloc(unsigned int nbits, gfp_t flags)
84 {
85         return bitmap_alloc(nbits, flags | __GFP_ZERO);
86 }
87
88 static inline void bitmap_free(const unsigned long *bitmap)
89 {
90         kfree(bitmap);
91 }
92 #endif /* !HAVE_BITMAP_ALLOC */
93
94 /*
95  * Shrinker
96  */
97 #ifndef SHRINK_STOP
98 # define SHRINK_STOP (~0UL)
99 #endif
100
101 #ifndef HAVE_MMAP_LOCK
102 static inline void mmap_write_lock(struct mm_struct *mm)
103 {
104         down_write(&mm->mmap_sem);
105 }
106
107 static inline bool mmap_write_trylock(struct mm_struct *mm)
108 {
109         return down_write_trylock(&mm->mmap_sem) != 0;
110 }
111
112 static inline void mmap_write_unlock(struct mm_struct *mm)
113 {
114         up_write(&mm->mmap_sem);
115 }
116
117 static inline void mmap_read_lock(struct mm_struct *mm)
118 {
119         down_read(&mm->mmap_sem);
120 }
121
122 static inline bool mmap_read_trylock(struct mm_struct *mm)
123 {
124         return down_read_trylock(&mm->mmap_sem) != 0;
125 }
126
127 static inline void mmap_read_unlock(struct mm_struct *mm)
128 {
129         up_read(&mm->mmap_sem);
130 }
131 #endif
132
133 #ifdef HAVE_VMALLOC_2ARGS
134 #define __ll_vmalloc(size, flags) __vmalloc(size, flags)
135 #else
136 #define __ll_vmalloc(size, flags) __vmalloc(size, flags, PAGE_KERNEL)
137 #endif
138
139 #ifndef HAVE_KFREE_SENSITIVE
140 #define kfree_sensitive(x)      kzfree(x)
141 #endif
142
143 #endif /* __LINUX_CFS_MEM_H__ */