Blame view

fs/gfs2/util.h 4.96 KB
b3b94faa5   David Teigland   [GFS2] The core o...
1
2
  /*
   * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3a8a9a103   Steven Whitehouse   [GFS2] Update cop...
3
   * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
b3b94faa5   David Teigland   [GFS2] The core o...
4
5
6
   *
   * This copyrighted material is made available to anyone wishing to use,
   * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa09   Steven Whitehouse   [GFS2] Update cop...
7
   * of the GNU General Public License version 2.
b3b94faa5   David Teigland   [GFS2] The core o...
8
9
10
11
   */
  
  #ifndef __UTIL_DOT_H__
  #define __UTIL_DOT_H__
f2f7ba523   Steven Whitehouse   [GFS2] Make heade...
12
  #include "incore.h"
b3b94faa5   David Teigland   [GFS2] The core o...
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  
  #define fs_printk(level, fs, fmt, arg...) \
  	printk(level "GFS2: fsid=%s: " fmt , (fs)->sd_fsname , ## arg)
  
  #define fs_info(fs, fmt, arg...) \
  	fs_printk(KERN_INFO , fs , fmt , ## arg)
  
  #define fs_warn(fs, fmt, arg...) \
  	fs_printk(KERN_WARNING , fs , fmt , ## arg)
  
  #define fs_err(fs, fmt, arg...) \
  	fs_printk(KERN_ERR, fs , fmt , ## arg)
  
  
  void gfs2_assert_i(struct gfs2_sbd *sdp);
  
  #define gfs2_assert(sdp, assertion) \
  do { \
  	if (unlikely(!(assertion))) { \
  		gfs2_assert_i(sdp); \
1e09ae544   Steven Whitehouse   [GFS2] Move BUG()...
33
  		BUG(); \
b3b94faa5   David Teigland   [GFS2] The core o...
34
35
36
37
38
39
40
41
42
          } \
  } while (0)
  
  
  int gfs2_assert_withdraw_i(struct gfs2_sbd *sdp, char *assertion,
  			   const char *function, char *file, unsigned int line);
  
  #define gfs2_assert_withdraw(sdp, assertion) \
  ((likely(assertion)) ? 0 : gfs2_assert_withdraw_i((sdp), #assertion, \
8e24eea72   Harvey Harrison   fs: replace remai...
43
  					__func__, __FILE__, __LINE__))
b3b94faa5   David Teigland   [GFS2] The core o...
44
45
46
47
48
49
50
  
  
  int gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion,
  		       const char *function, char *file, unsigned int line);
  
  #define gfs2_assert_warn(sdp, assertion) \
  ((likely(assertion)) ? 0 : gfs2_assert_warn_i((sdp), #assertion, \
8e24eea72   Harvey Harrison   fs: replace remai...
51
  					__func__, __FILE__, __LINE__))
b3b94faa5   David Teigland   [GFS2] The core o...
52
53
54
55
56
57
  
  
  int gfs2_consist_i(struct gfs2_sbd *sdp, int cluster_wide,
  		   const char *function, char *file, unsigned int line);
  
  #define gfs2_consist(sdp) \
8e24eea72   Harvey Harrison   fs: replace remai...
58
  gfs2_consist_i((sdp), 0, __func__, __FILE__, __LINE__)
b3b94faa5   David Teigland   [GFS2] The core o...
59
60
61
62
63
64
  
  
  int gfs2_consist_inode_i(struct gfs2_inode *ip, int cluster_wide,
  			 const char *function, char *file, unsigned int line);
  
  #define gfs2_consist_inode(ip) \
8e24eea72   Harvey Harrison   fs: replace remai...
65
  gfs2_consist_inode_i((ip), 0, __func__, __FILE__, __LINE__)
b3b94faa5   David Teigland   [GFS2] The core o...
66
67
68
69
70
71
  
  
  int gfs2_consist_rgrpd_i(struct gfs2_rgrpd *rgd, int cluster_wide,
  			 const char *function, char *file, unsigned int line);
  
  #define gfs2_consist_rgrpd(rgd) \
8e24eea72   Harvey Harrison   fs: replace remai...
72
  gfs2_consist_rgrpd_i((rgd), 0, __func__, __FILE__, __LINE__)
b3b94faa5   David Teigland   [GFS2] The core o...
73
74
75
76
77
78
79
80
81
82
83
84
  
  
  int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
  		       const char *type, const char *function,
  		       char *file, unsigned int line);
  
  static inline int gfs2_meta_check_i(struct gfs2_sbd *sdp,
  				    struct buffer_head *bh,
  				    const char *function,
  				    char *file, unsigned int line)
  {
  	struct gfs2_meta_header *mh = (struct gfs2_meta_header *)bh->b_data;
b44b84d76   Al Viro   [GFS2] gfs2 misc ...
85
  	u32 magic = be32_to_cpu(mh->mh_magic);
b3b94faa5   David Teigland   [GFS2] The core o...
86
87
88
89
90
91
92
  	if (unlikely(magic != GFS2_MAGIC))
  		return gfs2_meta_check_ii(sdp, bh, "magic number", function,
  					  file, line);
  	return 0;
  }
  
  #define gfs2_meta_check(sdp, bh) \
8e24eea72   Harvey Harrison   fs: replace remai...
93
  gfs2_meta_check_i((sdp), (bh), __func__, __FILE__, __LINE__)
b3b94faa5   David Teigland   [GFS2] The core o...
94
95
96
  
  
  int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
cd915493f   Steven Whitehouse   [GFS2] Change all...
97
  			   u16 type, u16 t,
b3b94faa5   David Teigland   [GFS2] The core o...
98
99
100
101
102
  			   const char *function,
  			   char *file, unsigned int line);
  
  static inline int gfs2_metatype_check_i(struct gfs2_sbd *sdp,
  					struct buffer_head *bh,
cd915493f   Steven Whitehouse   [GFS2] Change all...
103
  					u16 type,
b3b94faa5   David Teigland   [GFS2] The core o...
104
105
106
107
  					const char *function,
  					char *file, unsigned int line)
  {
  	struct gfs2_meta_header *mh = (struct gfs2_meta_header *)bh->b_data;
b44b84d76   Al Viro   [GFS2] gfs2 misc ...
108
  	u32 magic = be32_to_cpu(mh->mh_magic);
cd915493f   Steven Whitehouse   [GFS2] Change all...
109
  	u16 t = be32_to_cpu(mh->mh_type);
b3b94faa5   David Teigland   [GFS2] The core o...
110
111
112
  	if (unlikely(magic != GFS2_MAGIC))
  		return gfs2_meta_check_ii(sdp, bh, "magic number", function,
  					  file, line);
b3b94faa5   David Teigland   [GFS2] The core o...
113
114
115
116
117
118
119
          if (unlikely(t != type))
  		return gfs2_metatype_check_ii(sdp, bh, type, t, function,
  					      file, line);
  	return 0;
  }
  
  #define gfs2_metatype_check(sdp, bh, type) \
8e24eea72   Harvey Harrison   fs: replace remai...
120
  gfs2_metatype_check_i((sdp), (bh), (type), __func__, __FILE__, __LINE__)
b3b94faa5   David Teigland   [GFS2] The core o...
121

cd915493f   Steven Whitehouse   [GFS2] Change all...
122
123
  static inline void gfs2_metatype_set(struct buffer_head *bh, u16 type,
  				     u16 format)
b3b94faa5   David Teigland   [GFS2] The core o...
124
125
126
  {
  	struct gfs2_meta_header *mh;
  	mh = (struct gfs2_meta_header *)bh->b_data;
e3167ded1   Steven Whitehouse   [GFS] Fix bug in ...
127
128
  	mh->mh_type = cpu_to_be32(type);
  	mh->mh_format = cpu_to_be32(format);
b3b94faa5   David Teigland   [GFS2] The core o...
129
130
131
132
133
134
135
  }
  
  
  int gfs2_io_error_i(struct gfs2_sbd *sdp, const char *function,
  		    char *file, unsigned int line);
  
  #define gfs2_io_error(sdp) \
8e24eea72   Harvey Harrison   fs: replace remai...
136
  gfs2_io_error_i((sdp), __func__, __FILE__, __LINE__);
b3b94faa5   David Teigland   [GFS2] The core o...
137
138
139
140
141
142
  
  
  int gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh,
  		       const char *function, char *file, unsigned int line);
  
  #define gfs2_io_error_bh(sdp, bh) \
8e24eea72   Harvey Harrison   fs: replace remai...
143
  gfs2_io_error_bh_i((sdp), (bh), __func__, __FILE__, __LINE__);
b3b94faa5   David Teigland   [GFS2] The core o...
144

e18b890bb   Christoph Lameter   [PATCH] slab: rem...
145
  extern struct kmem_cache *gfs2_glock_cachep;
009d85183   Steven Whitehouse   GFS2: Metadata ad...
146
  extern struct kmem_cache *gfs2_glock_aspace_cachep;
e18b890bb   Christoph Lameter   [PATCH] slab: rem...
147
148
  extern struct kmem_cache *gfs2_inode_cachep;
  extern struct kmem_cache *gfs2_bufdata_cachep;
6bdd9be62   Bob Peterson   [GFS2] Allocate g...
149
  extern struct kmem_cache *gfs2_rgrpd_cachep;
37b2c8377   Steven Whitehouse   GFS2: Clean up & ...
150
  extern struct kmem_cache *gfs2_quotad_cachep;
b3b94faa5   David Teigland   [GFS2] The core o...
151

b3b94faa5   David Teigland   [GFS2] The core o...
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
  static inline unsigned int gfs2_tune_get_i(struct gfs2_tune *gt,
  					   unsigned int *p)
  {
  	unsigned int x;
  	spin_lock(&gt->gt_spin);
  	x = *p;
  	spin_unlock(&gt->gt_spin);
  	return x;
  }
  
  #define gfs2_tune_get(sdp, field) \
  gfs2_tune_get_i(&(sdp)->sd_tune, &(sdp)->sd_tune.field)
  
  void gfs2_icbit_munge(struct gfs2_sbd *sdp, unsigned char **bitmap,
  		      unsigned int bit, int new_value);
da755fdb4   Steven Whitehouse   [GFS2] Remove lm....
167
  int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...);
b3b94faa5   David Teigland   [GFS2] The core o...
168
169
  
  #endif /* __UTIL_DOT_H__ */