Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs.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, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #ifndef __LIBCFS_LIBCFS_H__
33 #define __LIBCFS_LIBCFS_H__
34
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/workqueue.h>
38 #include <linux/sched.h>
39 #ifdef HAVE_SCHED_HEADERS
40 #include <linux/sched/signal.h>
41 #endif
42
43 #include <libcfs/linux/linux-misc.h>
44 #include <libcfs/linux/linux-mem.h>
45 #include <libcfs/linux/linux-time.h>
46 #include <libcfs/linux/linux-wait.h>
47 #include <libcfs/linux/linux-fortify-string.h>
48
49 #include <uapi/linux/lnet/libcfs_ioctl.h>
50 #include <libcfs/libcfs_debug.h>
51 #include <libcfs/libcfs_private.h>
52 #include <libcfs/libcfs_string.h>
53 #include <libcfs/libcfs_hash.h>
54 #include <libcfs/libcfs_fail.h>
55
56 #define LIBCFS_VERSION  "0.7.1"
57
58 /* Sparse annotations */
59 #if !defined(__must_hold)
60 # ifdef __CHECKER__
61 #  define __must_hold(x) __attribute__((context(x, 1, 1)))
62 # else  /* __CHECKER__ */
63 #  define __must_hold(x)
64 # endif /* !__CHECKER__ */
65 #endif /* !__must_hold */
66
67 typedef s32 timeout_t;
68
69 int libcfs_setup(void);
70 int libcfs_ioctl(unsigned int cmd, struct libcfs_ioctl_data *data);
71
72 extern struct workqueue_struct *cfs_rehash_wq;
73
74 void lnet_insert_debugfs(struct ctl_table *table, struct module *mod,
75                          void **statep);
76 void lnet_remove_debugfs(struct ctl_table *table);
77 void lnet_debugfs_fini(void **statep);
78
79 /* helper for sysctl handlers */
80 int debugfs_doint(struct ctl_table *table, int write,
81                   void __user *buffer, size_t *lenp, loff_t *ppos);
82
83 /*
84  * Memory
85  */
86 #if BITS_PER_LONG == 32
87 /* limit to lowmem on 32-bit systems */
88 #define NUM_CACHEPAGES \
89         min(cfs_totalram_pages(), 1UL << (30 - PAGE_SHIFT) * 3 / 4)
90 #else
91 #define NUM_CACHEPAGES cfs_totalram_pages()
92 #endif
93
94 #define wait_var_event_warning(var, condition, format, ...)             \
95 do {                                                                    \
96         int counter = 4;                                                \
97         might_sleep();                                                  \
98         if (condition)                                                  \
99                 break;                                                  \
100         ___wait_var_event(var, condition, TASK_UNINTERRUPTIBLE, 0, 0,   \
101                           if (schedule_timeout(cfs_time_seconds(1)) == 0)\
102                                   CDEBUG(is_power_of_2(counter++) ?     \
103                                          D_WARNING : D_NET,             \
104                                          format, ## __VA_ARGS__)        \
105                 );                                                      \
106 } while (0)
107
108 #define FLEXIBLE_OBJECT \
109         "Struct contains a flexible member, the size of object is checked" \
110         "and can be safely copied in a single memcpy()"
111
112 #endif /* _LIBCFS_LIBCFS_H_ */