diff options
Diffstat (limited to 'fs/gfs2/util.h')
| -rw-r--r-- | fs/gfs2/util.h | 51 | 
1 files changed, 25 insertions, 26 deletions
diff --git a/fs/gfs2/util.h b/fs/gfs2/util.h index b432e04600d..cbdcbdf3961 100644 --- a/fs/gfs2/util.h +++ b/fs/gfs2/util.h @@ -10,20 +10,23 @@  #ifndef __UTIL_DOT_H__  #define __UTIL_DOT_H__ -#include "incore.h" - -#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) +#ifdef pr_fmt +#undef pr_fmt +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#endif -#define fs_warn(fs, fmt, arg...) \ -	fs_printk(KERN_WARNING , fs , fmt , ## arg) +#include <linux/mempool.h> -#define fs_err(fs, fmt, arg...) \ -	fs_printk(KERN_ERR, fs , fmt , ## arg) +#include "incore.h" +#define fs_emerg(fs, fmt, ...)						\ +	pr_emerg("fsid=%s: " fmt, (fs)->sd_fsname, ##__VA_ARGS__) +#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__)  void gfs2_assert_i(struct gfs2_sbd *sdp); @@ -77,23 +80,19 @@ 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) +static inline int gfs2_meta_check(struct gfs2_sbd *sdp, +				    struct buffer_head *bh)  {  	struct gfs2_meta_header *mh = (struct gfs2_meta_header *)bh->b_data;  	u32 magic = be32_to_cpu(mh->mh_magic); -	if (unlikely(magic != GFS2_MAGIC)) -		return gfs2_meta_check_ii(sdp, bh, "magic number", function, -					  file, line); +	if (unlikely(magic != GFS2_MAGIC)) { +		pr_err("Magic number missing at %llu\n", +		       (unsigned long long)bh->b_blocknr); +		return -EIO; +	}  	return 0;  } -#define gfs2_meta_check(sdp, bh) \ -gfs2_meta_check_i((sdp), (bh), __func__, __FILE__, __LINE__) - -  int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,  			   u16 type, u16 t,  			   const char *function, @@ -150,6 +149,8 @@ extern struct kmem_cache *gfs2_inode_cachep;  extern struct kmem_cache *gfs2_bufdata_cachep;  extern struct kmem_cache *gfs2_rgrpd_cachep;  extern struct kmem_cache *gfs2_quotad_cachep; +extern struct kmem_cache *gfs2_rsrv_cachep; +extern mempool_t *gfs2_page_pool;  static inline unsigned int gfs2_tune_get_i(struct gfs2_tune *gt,  					   unsigned int *p) @@ -164,9 +165,7 @@ static inline unsigned int gfs2_tune_get_i(struct gfs2_tune *gt,  #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); -int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...); +__printf(2, 3) +int gfs2_lm_withdraw(struct gfs2_sbd *sdp, const char *fmt, ...);  #endif /* __UTIL_DOT_H__ */ -  | 
