2011-03-02 04:20:59 +01:00
|
|
|
#ifndef __XFS_MESSAGE_H
|
|
|
|
#define __XFS_MESSAGE_H 1
|
|
|
|
|
|
|
|
struct xfs_mount;
|
|
|
|
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_alert_tag(const struct xfs_mount *mp, int tag,
|
2011-03-02 04:20:59 +01:00
|
|
|
const char *fmt, ...)
|
|
|
|
__attribute__ ((format (printf, 3, 4)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_err(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_warn(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_notice(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_info(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-04-02 20:13:40 +02:00
|
|
|
extern void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...)
|
2011-03-02 04:20:59 +01:00
|
|
|
__attribute__ ((format (printf, 2, 3)));
|
|
|
|
#else
|
2011-05-03 22:14:44 +02:00
|
|
|
static inline void
|
|
|
|
__attribute__ ((format (printf, 2, 3)))
|
|
|
|
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 */
|