Whamcloud - gitweb
LU-9859 libcfs: replace memory_presure functions by standard interfaces
[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 #ifndef HAVE_MEMALLOC_RECLAIM
53 static inline unsigned int memalloc_noreclaim_save(void)
54 {
55         unsigned int flags = current->flags & PF_MEMALLOC;
56
57         current->flags |= PF_MEMALLOC;
58         return flags;
59 }
60
61 static inline void memalloc_noreclaim_restore(unsigned int flags)
62 {
63         current->flags = (current->flags & ~PF_MEMALLOC) | flags;
64 }
65 #endif /* !HAVE_MEMALLOC_RECLAIM */
66
67 /*
68  * Shrinker
69  */
70 # define SHRINKER_ARGS(sc, nr_to_scan, gfp_mask)  \
71                        struct shrinker *shrinker, \
72                        struct shrink_control *sc
73 # define shrink_param(sc, var) ((sc)->var)
74
75 #ifdef HAVE_SHRINKER_COUNT
76 struct shrinker_var {
77         unsigned long (*count)(struct shrinker *,
78                                struct shrink_control *sc);
79         unsigned long (*scan)(struct shrinker *,
80                               struct shrink_control *sc);
81 };
82 # define DEF_SHRINKER_VAR(name, shrink, count_obj, scan_obj) \
83             struct shrinker_var name = { .count = count_obj, .scan = scan_obj }
84 #else
85 struct shrinker_var {
86         int (*shrink)(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask));
87 };
88 # define DEF_SHRINKER_VAR(name, shrinker, count, scan) \
89             struct shrinker_var name = { .shrink = shrinker }
90 # define SHRINK_STOP (~0UL)
91 #endif
92
93 static inline
94 struct shrinker *set_shrinker(int seek, struct shrinker_var *var)
95 {
96         struct shrinker *s;
97
98         s = kzalloc(sizeof(*s), GFP_KERNEL);
99         if (s == NULL)
100                 return (NULL);
101
102 #ifdef HAVE_SHRINKER_COUNT
103         s->count_objects = var->count;
104         s->scan_objects = var->scan;
105 #else
106         s->shrink = var->shrink;
107 #endif
108         s->seeks = seek;
109
110         register_shrinker(s);
111
112         return s;
113 }
114
115 static inline
116 void remove_shrinker(struct shrinker *shrinker)
117 {
118         if (shrinker == NULL)
119                 return;
120
121         unregister_shrinker(shrinker);
122         kfree(shrinker);
123 }
124
125 #endif /* __LINUX_CFS_MEM_H__ */