1 #ifndef __XFS_MESSAGE_H
2 #define __XFS_MESSAGE_H 1
7 void xfs_emerg(const struct xfs_mount
*mp
, const char *fmt
, ...);
9 void xfs_alert(const struct xfs_mount
*mp
, const char *fmt
, ...);
11 void xfs_alert_tag(const struct xfs_mount
*mp
, int tag
, const char *fmt
, ...);
13 void xfs_crit(const struct xfs_mount
*mp
, const char *fmt
, ...);
15 void xfs_err(const struct xfs_mount
*mp
, const char *fmt
, ...);
17 void xfs_warn(const struct xfs_mount
*mp
, const char *fmt
, ...);
19 void xfs_notice(const struct xfs_mount
*mp
, const char *fmt
, ...);
21 void xfs_info(const struct xfs_mount
*mp
, const char *fmt
, ...);
25 void xfs_debug(const struct xfs_mount
*mp
, const char *fmt
, ...);
27 static inline __printf(2, 3)
28 void xfs_debug(const struct xfs_mount
*mp
, const char *fmt
, ...)
33 extern void assfail(char *expr
, char *f
, int l
);
35 extern void xfs_hex_dump(void *p
, int length
);
37 #endif /* __XFS_MESSAGE_H */