]> git.proxmox.com Git - mirror_spl-debian.git/blame - modules/splat/splat-internal.h
Go through and add a header with the proper UCRL number.
[mirror_spl-debian.git] / modules / splat / splat-internal.h
CommitLineData
715f6251 1/*
2 * This file is part of the SPL: Solaris Porting Layer.
3 *
4 * Copyright (c) 2008 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * UCRL-CODE-235197
11 *
12 * This is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
7c50328b 27#ifndef _SPLAT_INTERNAL_H
28#define _SPLAT_INTERNAL_H
29
30#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/string.h>
33#include <linux/errno.h>
34#include <linux/slab.h>
35#include <linux/sched.h>
36#include <linux/elf.h>
37#include <linux/limits.h>
38#include <linux/version.h>
39#include <linux/vmalloc.h>
40#include <linux/module.h>
41#include <linux/device.h>
42#include <linux/list.h>
43#include <asm/ioctls.h>
44#include <asm/uaccess.h>
45#include <stdarg.h>
46
23f28c4f 47#include <sys/callb.h>
48#include <sys/condvar.h>
49#include <sys/cred.h>
50#include <sys/sysmacros.h>
51#include <sys/kmem.h>
52#include <sys/kstat.h>
53#include <sys/mutex.h>
54#include <sys/random.h>
55#include <sys/rwlock.h>
56#include <sys/taskq.h>
57#include <sys/thread.h>
58#include <sys/time.h>
59#include <sys/timer.h>
60#include <sys/types.h>
9490c148 61#include <sys/kobj.h>
9f4c835a 62#include <sys/atomic.h>
23f28c4f 63
596e65b4 64#include "splat-ctl.h"
7c50328b 65
66#define SPLAT_SUBSYSTEM_INIT(type) \
8d0f1ee9 67({ splat_subsystem_t *_sub_; \
7c50328b 68 \
8d0f1ee9 69 _sub_ = (splat_subsystem_t *)splat_##type##_init(); \
7c50328b 70 if (_sub_ == NULL) { \
8d0f1ee9 71 printk(KERN_ERR "splat: Error initializing: " #type "\n"); \
7c50328b 72 } else { \
8d0f1ee9 73 spin_lock(&splat_module_lock); \
74 list_add_tail(&(_sub_->subsystem_list), \
7c50328b 75 &splat_module_list); \
8d0f1ee9 76 spin_unlock(&splat_module_lock); \
7c50328b 77 } \
78})
79
80#define SPLAT_SUBSYSTEM_FINI(type) \
8d0f1ee9 81({ splat_subsystem_t *_sub_, *_tmp_; \
7c50328b 82 int _id_, _flag_ = 0; \
83 \
8d0f1ee9 84 _id_ = splat_##type##_id(); \
85 spin_lock(&splat_module_lock); \
7c50328b 86 list_for_each_entry_safe(_sub_, _tmp_, &splat_module_list, \
87 subsystem_list) { \
88 if (_sub_->desc.id == _id_) { \
89 list_del_init(&(_sub_->subsystem_list)); \
8d0f1ee9 90 spin_unlock(&splat_module_lock); \
91 splat_##type##_fini(_sub_); \
7c50328b 92 spin_lock(&splat_module_lock); \
93 _flag_ = 1; \
94 } \
95 } \
8d0f1ee9 96 spin_unlock(&splat_module_lock); \
7c50328b 97 \
98 if (!_flag_) \
8d0f1ee9 99 printk(KERN_ERR "splat: Error finalizing: " #type "\n"); \
7c50328b 100})
101
102#define SPLAT_TEST_INIT(sub, n, d, tid, func) \
8d0f1ee9 103({ splat_test_t *_test_; \
7c50328b 104 \
8d0f1ee9 105 _test_ = (splat_test_t *)kmalloc(sizeof(*_test_), GFP_KERNEL); \
7c50328b 106 if (_test_ == NULL) { \
8d0f1ee9 107 printk(KERN_ERR "splat: Error initializing: " n "/" #tid" \n");\
7c50328b 108 } else { \
109 memset(_test_, 0, sizeof(*_test_)); \
110 strncpy(_test_->desc.name, n, SPLAT_NAME_SIZE); \
111 strncpy(_test_->desc.desc, d, SPLAT_DESC_SIZE); \
112 _test_->desc.id = tid; \
113 _test_->test = func; \
114 INIT_LIST_HEAD(&(_test_->test_list)); \
115 spin_lock(&((sub)->test_lock)); \
116 list_add_tail(&(_test_->test_list),&((sub)->test_list));\
117 spin_unlock(&((sub)->test_lock)); \
118 } \
119})
120
121#define SPLAT_TEST_FINI(sub, tid) \
8d0f1ee9 122({ splat_test_t *_test_, *_tmp_; \
7c50328b 123 int _flag_ = 0; \
124 \
125 spin_lock(&((sub)->test_lock)); \
126 list_for_each_entry_safe(_test_, _tmp_, \
127 &((sub)->test_list), test_list) { \
128 if (_test_->desc.id == tid) { \
129 list_del_init(&(_test_->test_list)); \
130 _flag_ = 1; \
131 } \
132 } \
133 spin_unlock(&((sub)->test_lock)); \
134 \
135 if (!_flag_) \
8d0f1ee9 136 printk(KERN_ERR "splat: Error finalizing: " #tid "\n"); \
7c50328b 137})
138
139typedef int (*splat_test_func_t)(struct file *, void *);
140
141typedef struct splat_test {
142 struct list_head test_list;
143 splat_user_t desc;
144 splat_test_func_t test;
145} splat_test_t;
146
147typedef struct splat_subsystem {
148 struct list_head subsystem_list;/* List had to chain entries */
149 splat_user_t desc;
150 spinlock_t test_lock;
151 struct list_head test_list;
152} splat_subsystem_t;
153
154#define SPLAT_INFO_BUFFER_SIZE 65536
155#define SPLAT_INFO_BUFFER_REDZONE 256
156
157typedef struct splat_info {
158 spinlock_t info_lock;
159 int info_size;
160 char *info_buffer;
161 char *info_head; /* Internal kernel use only */
162} splat_info_t;
163
164#define sym2str(sym) (char *)(#sym)
165
166#define splat_print(file, format, args...) \
d6a26c6a 167({ splat_info_t *_info_ = (splat_info_t *)file->private_data; \
7c50328b 168 int _rc_; \
169 \
170 ASSERT(_info_); \
171 ASSERT(_info_->info_buffer); \
172 \
173 spin_lock(&_info_->info_lock); \
174 \
175 /* Don't allow the kernel to start a write in the red zone */ \
176 if ((int)(_info_->info_head - _info_->info_buffer) > \
177 (SPLAT_INFO_BUFFER_SIZE - SPLAT_INFO_BUFFER_REDZONE)) { \
178 _rc_ = -EOVERFLOW; \
179 } else { \
180 _rc_ = sprintf(_info_->info_head, format, args); \
181 if (_rc_ >= 0) \
182 _info_->info_head += _rc_; \
183 } \
184 \
185 spin_unlock(&_info_->info_lock); \
186 _rc_; \
187})
188
d6a26c6a 189#define splat_vprint(file, test, format, args...) \
7c50328b 190 splat_print(file, "%*s: " format, SPLAT_NAME_SIZE, test, args)
191
192splat_subsystem_t * splat_condvar_init(void);
193splat_subsystem_t * splat_kmem_init(void);
194splat_subsystem_t * splat_mutex_init(void);
195splat_subsystem_t * splat_krng_init(void);
196splat_subsystem_t * splat_rwlock_init(void);
197splat_subsystem_t * splat_taskq_init(void);
198splat_subsystem_t * splat_thread_init(void);
199splat_subsystem_t * splat_time_init(void);
4b171585 200splat_subsystem_t * splat_vnode_init(void);
9490c148 201splat_subsystem_t * splat_kobj_init(void);
9f4c835a 202splat_subsystem_t * splat_atomic_init(void);
7c50328b 203
204void splat_condvar_fini(splat_subsystem_t *);
205void splat_kmem_fini(splat_subsystem_t *);
206void splat_mutex_fini(splat_subsystem_t *);
207void splat_krng_fini(splat_subsystem_t *);
208void splat_rwlock_fini(splat_subsystem_t *);
209void splat_taskq_fini(splat_subsystem_t *);
210void splat_thread_fini(splat_subsystem_t *);
211void splat_time_fini(splat_subsystem_t *);
4b171585 212void splat_vnode_fini(splat_subsystem_t *);
9490c148 213void splat_kobj_fini(splat_subsystem_t *);
9f4c835a 214void splat_atomic_fini(splat_subsystem_t *);
7c50328b 215
216int splat_condvar_id(void);
217int splat_kmem_id(void);
218int splat_mutex_id(void);
219int splat_krng_id(void);
220int splat_rwlock_id(void);
221int splat_taskq_id(void);
222int splat_thread_id(void);
223int splat_time_id(void);
4b171585 224int splat_vnode_id(void);
9490c148 225int splat_kobj_id(void);
9f4c835a 226int splat_atomic_id(void);
7c50328b 227
228#endif /* _SPLAT_INTERNAL_H */