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