Whamcloud - gitweb
LU-11089 obdclass: remove locking from lu_context_exit()
[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
48 /*
49  * Shrinker
50  */
51 #ifdef HAVE_SHRINK_CONTROL
52 # define SHRINKER_ARGS(sc, nr_to_scan, gfp_mask)  \
53                        struct shrinker *shrinker, \
54                        struct shrink_control *sc
55 # define shrink_param(sc, var) ((sc)->var)
56 #else
57 struct shrink_control {
58         gfp_t gfp_mask;
59         unsigned long nr_to_scan;
60 };
61 # ifdef HAVE_SHRINKER_WANT_SHRINK_PTR
62 #  define SHRINKER_ARGS(sc, nr_to_scan, gfp_mask)  \
63                         struct shrinker *shrinker, \
64                         int nr_to_scan, gfp_t gfp_mask
65 # else
66 #  define SHRINKER_ARGS(sc, nr_to_scan, gfp_mask)  \
67                         int nr_to_scan, gfp_t gfp_mask
68 # endif
69         /* avoid conflict with spl mm_compat.h */
70 # define HAVE_SHRINK_CONTROL_STRUCT 1
71 # define shrink_param(sc, var) (var)
72 #endif
73
74 #ifdef HAVE_SHRINKER_COUNT
75 struct shrinker_var {
76         unsigned long (*count)(struct shrinker *,
77                                struct shrink_control *sc);
78         unsigned long (*scan)(struct shrinker *,
79                               struct shrink_control *sc);
80 };
81 # define DEF_SHRINKER_VAR(name, shrink, count_obj, scan_obj) \
82             struct shrinker_var name = { .count = count_obj, .scan = scan_obj }
83 #else
84 struct shrinker_var {
85         int (*shrink)(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask));
86 };
87 # define DEF_SHRINKER_VAR(name, shrinker, count, scan) \
88             struct shrinker_var name = { .shrink = shrinker }
89 # define SHRINK_STOP (~0UL)
90 #endif
91
92 static inline
93 struct shrinker *set_shrinker(int seek, struct shrinker_var *var)
94 {
95         struct shrinker *s;
96
97         s = kzalloc(sizeof(*s), GFP_KERNEL);
98         if (s == NULL)
99                 return (NULL);
100
101 #ifdef HAVE_SHRINKER_COUNT
102         s->count_objects = var->count;
103         s->scan_objects = var->scan;
104 #else
105         s->shrink = var->shrink;
106 #endif
107         s->seeks = seek;
108
109         register_shrinker(s);
110
111         return s;
112 }
113
114 static inline
115 void remove_shrinker(struct shrinker *shrinker)
116 {
117         if (shrinker == NULL)
118                 return;
119
120         unregister_shrinker(shrinker);
121         kfree(shrinker);
122 }
123
124 #endif /* __LINUX_CFS_MEM_H__ */