util.h 5.0 KB
Newer Older
D
David Teigland 已提交
1 2
/*
 * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3
 * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
D
David Teigland 已提交
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
7
 * of the GNU General Public License version 2.
D
David Teigland 已提交
8 9 10 11 12
 */

#ifndef __UTIL_DOT_H__
#define __UTIL_DOT_H__

13 14 15 16 17
#ifdef pr_fmt
#undef pr_fmt
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#endif

18 19
#include <linux/mempool.h>

20
#include "incore.h"
D
David Teigland 已提交
21

J
Joe Perches 已提交
22 23
#define fs_emerg(fs, fmt, ...)						\
	pr_emerg("fsid=%s: " fmt, (fs)->sd_fsname, ##__VA_ARGS__)
24 25 26 27 28 29
#define fs_warn(fs, fmt, ...)						\
	pr_warn("fsid=%s: " fmt, (fs)->sd_fsname, ##__VA_ARGS__)
#define fs_err(fs, fmt, ...)						\
	pr_err("fsid=%s: " fmt, (fs)->sd_fsname, ##__VA_ARGS__)
#define fs_info(fs, fmt, ...)						\
	pr_info("fsid=%s: " fmt, (fs)->sd_fsname, ##__VA_ARGS__)
D
David Teigland 已提交
30 31 32 33 34 35 36

void gfs2_assert_i(struct gfs2_sbd *sdp);

#define gfs2_assert(sdp, assertion) \
do { \
	if (unlikely(!(assertion))) { \
		gfs2_assert_i(sdp); \
37
		BUG(); \
D
David Teigland 已提交
38 39 40 41 42 43 44 45 46
        } \
} 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, \
47
					__func__, __FILE__, __LINE__))
D
David Teigland 已提交
48 49 50 51 52 53 54


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, \
55
					__func__, __FILE__, __LINE__))
D
David Teigland 已提交
56 57 58 59 60 61


int gfs2_consist_i(struct gfs2_sbd *sdp, int cluster_wide,
		   const char *function, char *file, unsigned int line);

#define gfs2_consist(sdp) \
62
gfs2_consist_i((sdp), 0, __func__, __FILE__, __LINE__)
D
David Teigland 已提交
63 64 65 66 67 68


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) \
69
gfs2_consist_inode_i((ip), 0, __func__, __FILE__, __LINE__)
D
David Teigland 已提交
70 71 72 73 74 75


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) \
76
gfs2_consist_rgrpd_i((rgd), 0, __func__, __FILE__, __LINE__)
D
David Teigland 已提交
77 78 79 80 81 82


int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
		       const char *type, const char *function,
		       char *file, unsigned int line);

83 84
static inline int gfs2_meta_check(struct gfs2_sbd *sdp,
				    struct buffer_head *bh)
D
David Teigland 已提交
85 86
{
	struct gfs2_meta_header *mh = (struct gfs2_meta_header *)bh->b_data;
A
Al Viro 已提交
87
	u32 magic = be32_to_cpu(mh->mh_magic);
88
	if (unlikely(magic != GFS2_MAGIC)) {
89
		pr_err("Magic number missing at %llu\n",
90 91 92
		       (unsigned long long)bh->b_blocknr);
		return -EIO;
	}
D
David Teigland 已提交
93 94 95 96
	return 0;
}

int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
97
			   u16 type, u16 t,
D
David Teigland 已提交
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,
103
					u16 type,
D
David Teigland 已提交
104 105 106 107
					const char *function,
					char *file, unsigned int line)
{
	struct gfs2_meta_header *mh = (struct gfs2_meta_header *)bh->b_data;
A
Al Viro 已提交
108
	u32 magic = be32_to_cpu(mh->mh_magic);
109
	u16 t = be32_to_cpu(mh->mh_type);
D
David Teigland 已提交
110 111 112 113 114 115 116 117 118 119
	if (unlikely(magic != GFS2_MAGIC))
		return gfs2_meta_check_ii(sdp, bh, "magic number", function,
					  file, line);
        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) \
120
gfs2_metatype_check_i((sdp), (bh), (type), __func__, __FILE__, __LINE__)
D
David Teigland 已提交
121

122 123
static inline void gfs2_metatype_set(struct buffer_head *bh, u16 type,
				     u16 format)
D
David Teigland 已提交
124 125 126
{
	struct gfs2_meta_header *mh;
	mh = (struct gfs2_meta_header *)bh->b_data;
127 128
	mh->mh_type = cpu_to_be32(type);
	mh->mh_format = cpu_to_be32(format);
D
David Teigland 已提交
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) \
136
gfs2_io_error_i((sdp), __func__, __FILE__, __LINE__);
D
David Teigland 已提交
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) \
143
gfs2_io_error_bh_i((sdp), (bh), __func__, __FILE__, __LINE__);
D
David Teigland 已提交
144 145


146
extern struct kmem_cache *gfs2_glock_cachep;
147
extern struct kmem_cache *gfs2_glock_aspace_cachep;
148 149
extern struct kmem_cache *gfs2_inode_cachep;
extern struct kmem_cache *gfs2_bufdata_cachep;
150
extern struct kmem_cache *gfs2_rgrpd_cachep;
151
extern struct kmem_cache *gfs2_quotad_cachep;
152
extern struct kmem_cache *gfs2_qadata_cachep;
153
extern struct kmem_cache *gfs2_rsrv_cachep;
154
extern mempool_t *gfs2_page_pool;
D
David Teigland 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168

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)

169 170
__printf(2, 3)
int gfs2_lm_withdraw(struct gfs2_sbd *sdp, const char *fmt, ...);
D
David Teigland 已提交
171 172

#endif /* __UTIL_DOT_H__ */