2011-03-02 04:20:59 +01:00
|
|
|
#ifndef __XFS_MESSAGE_H
|
|
|
|
#define __XFS_MESSAGE_H 1
|
|
|
|
|
|
|
|
struct xfs_mount;
|
|
|
|
|
2011-11-01 01:11:33 +01:00
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...);
|
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...);
|
|
|
|
extern __printf(3, 4)
|
|
|
|
void xfs_alert_tag(const struct xfs_mount *mp, int tag, const char *fmt, ...);
|
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...);
|
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_err(const struct xfs_mount *mp, const char *fmt, ...);
|
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_warn(const struct xfs_mount *mp, const char *fmt, ...);
|
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_notice(const struct xfs_mount *mp, const char *fmt, ...);
|
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_info(const struct xfs_mount *mp, const char *fmt, ...);
|
2011-03-02 04:20:59 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-11-01 01:11:33 +01:00
|
|
|
extern __printf(2, 3)
|
|
|
|
void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...);
|
2011-03-02 04:20:59 +01:00
|
|
|
#else
|
2011-11-01 01:11:33 +01:00
|
|
|
static inline __printf(2, 3)
|
|
|
|
void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-04-02 20:13:40 +02:00
|
|
|
{
|
|
|
|
}
|
2011-03-02 04:20:59 +01:00
|
|
|
#endif
|
|
|
|
|
2011-03-07 00:09:35 +01:00
|
|
|
extern void assfail(char *expr, char *f, int l);
|
|
|
|
|
|
|
|
extern void xfs_hex_dump(void *p, int length);
|
|
|
|
|
2011-03-02 04:20:59 +01:00
|
|
|
#endif /* __XFS_MESSAGE_H */
|