• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/gfs2/

Lines Matching defs:sdp

28 void gfs2_assert_i(struct gfs2_sbd *sdp);
30 #define gfs2_assert(sdp, assertion) \
33 gfs2_assert_i(sdp); \
39 int gfs2_assert_withdraw_i(struct gfs2_sbd *sdp, char *assertion,
42 #define gfs2_assert_withdraw(sdp, assertion) \
43 ((likely(assertion)) ? 0 : gfs2_assert_withdraw_i((sdp), #assertion, \
47 int gfs2_assert_warn_i(struct gfs2_sbd *sdp, char *assertion,
50 #define gfs2_assert_warn(sdp, assertion) \
51 ((likely(assertion)) ? 0 : gfs2_assert_warn_i((sdp), #assertion, \
55 int gfs2_consist_i(struct gfs2_sbd *sdp, int cluster_wide,
58 #define gfs2_consist(sdp) \
59 gfs2_consist_i((sdp), 0, __FUNCTION__, __FILE__, __LINE__)
76 int gfs2_meta_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
80 static inline int gfs2_meta_check_i(struct gfs2_sbd *sdp,
88 return gfs2_meta_check_ii(sdp, bh, "magic number", function,
93 #define gfs2_meta_check(sdp, bh) \
94 gfs2_meta_check_i((sdp), (bh), __FUNCTION__, __FILE__, __LINE__)
97 int gfs2_metatype_check_ii(struct gfs2_sbd *sdp, struct buffer_head *bh,
102 static inline int gfs2_metatype_check_i(struct gfs2_sbd *sdp,
112 return gfs2_meta_check_ii(sdp, bh, "magic number", function,
115 return gfs2_metatype_check_ii(sdp, bh, type, t, function,
120 #define gfs2_metatype_check(sdp, bh, type) \
121 gfs2_metatype_check_i((sdp), (bh), (type), __FUNCTION__, __FILE__, __LINE__)
133 int gfs2_io_error_i(struct gfs2_sbd *sdp, const char *function,
136 #define gfs2_io_error(sdp) \
137 gfs2_io_error_i((sdp), __FUNCTION__, __FILE__, __LINE__);
140 int gfs2_io_error_bh_i(struct gfs2_sbd *sdp, struct buffer_head *bh,
143 #define gfs2_io_error_bh(sdp, bh) \
144 gfs2_io_error_bh_i((sdp), (bh), __FUNCTION__, __FILE__, __LINE__);
161 #define gfs2_tune_get(sdp, field) \
162 gfs2_tune_get_i(&(sdp)->sd_tune, &(sdp)->sd_tune.field)
164 void gfs2_icbit_munge(struct gfs2_sbd *sdp, unsigned char **bitmap,