1 #ifndef __XFS_MESSAGE_H 2 #define __XFS_MESSAGE_H 1 3 4 struct xfs_mount; 5 6 extern __printf(2, 3) 7 void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...); 8 extern __printf(2, 3) 9 void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...); 10 extern __printf(3, 4) 11 void xfs_alert_tag(const struct xfs_mount *mp, int tag, const char *fmt, ...); 12 extern __printf(2, 3) 13 void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...); 14 extern __printf(2, 3) 15 void xfs_err(const struct xfs_mount *mp, const char *fmt, ...); 16 extern __printf(2, 3) 17 void xfs_warn(const struct xfs_mount *mp, const char *fmt, ...); 18 extern __printf(2, 3) 19 void xfs_notice(const struct xfs_mount *mp, const char *fmt, ...); 20 extern __printf(2, 3) 21 void xfs_info(const struct xfs_mount *mp, const char *fmt, ...); 22 23 #ifdef DEBUG 24 extern __printf(2, 3) 25 void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...); 26 #else 27 static inline __printf(2, 3) 28 void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...) 29 { 30 } 31 #endif 32 33 extern void assfail(char *expr, char *f, int l); 34 35 extern void xfs_hex_dump(void *p, int length); 36 37 #endif /* __XFS_MESSAGE_H */ 38