Whamcloud - gitweb
LU-4801 ldlm: discard l_lock from struct ldlm_lock.
[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 #ifndef SLAB_TYPESAFE_BY_RCU
49 #define SLAB_TYPESAFE_BY_RCU SLAB_DESTROY_BY_RCU
50 #endif
51
52 /*
53  * Shrinker
54  */
55 # define SHRINKER_ARGS(sc, nr_to_scan, gfp_mask)  \
56                        struct shrinker *shrinker, \
57                        struct shrink_control *sc
58 # define shrink_param(sc, var) ((sc)->var)
59
60 #ifdef HAVE_SHRINKER_COUNT
61 struct shrinker_var {
62         unsigned long (*count)(struct shrinker *,
63                                struct shrink_control *sc);
64         unsigned long (*scan)(struct shrinker *,
65                               struct shrink_control *sc);
66 };
67 # define DEF_SHRINKER_VAR(name, shrink, count_obj, scan_obj) \
68             struct shrinker_var name = { .count = count_obj, .scan = scan_obj }
69 #else
70 struct shrinker_var {
71         int (*shrink)(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask));
72 };
73 # define DEF_SHRINKER_VAR(name, shrinker, count, scan) \
74             struct shrinker_var name = { .shrink = shrinker }
75 # define SHRINK_STOP (~0UL)
76 #endif
77
78 static inline
79 struct shrinker *set_shrinker(int seek, struct shrinker_var *var)
80 {
81         struct shrinker *s;
82
83         s = kzalloc(sizeof(*s), GFP_KERNEL);
84         if (s == NULL)
85                 return (NULL);
86
87 #ifdef HAVE_SHRINKER_COUNT
88         s->count_objects = var->count;
89         s->scan_objects = var->scan;
90 #else
91         s->shrink = var->shrink;
92 #endif
93         s->seeks = seek;
94
95         register_shrinker(s);
96
97         return s;
98 }
99
100 static inline
101 void remove_shrinker(struct shrinker *shrinker)
102 {
103         if (shrinker == NULL)
104                 return;
105
106         unregister_shrinker(shrinker);
107         kfree(shrinker);
108 }
109
110 #endif /* __LINUX_CFS_MEM_H__ */