Btrfs: add new sources for device replace code
[linux-2.6-block.git] / fs / xfs / xfs_message.h
CommitLineData
10e38391
DC
1#ifndef __XFS_MESSAGE_H
2#define __XFS_MESSAGE_H 1
3
4struct xfs_mount;
5
b9075fa9
JP
6extern __printf(2, 3)
7void xfs_emerg(const struct xfs_mount *mp, const char *fmt, ...);
8extern __printf(2, 3)
9void xfs_alert(const struct xfs_mount *mp, const char *fmt, ...);
10extern __printf(3, 4)
11void xfs_alert_tag(const struct xfs_mount *mp, int tag, const char *fmt, ...);
12extern __printf(2, 3)
13void xfs_crit(const struct xfs_mount *mp, const char *fmt, ...);
14extern __printf(2, 3)
15void xfs_err(const struct xfs_mount *mp, const char *fmt, ...);
16extern __printf(2, 3)
17void xfs_warn(const struct xfs_mount *mp, const char *fmt, ...);
18extern __printf(2, 3)
19void xfs_notice(const struct xfs_mount *mp, const char *fmt, ...);
20extern __printf(2, 3)
21void xfs_info(const struct xfs_mount *mp, const char *fmt, ...);
10e38391
DC
22
23#ifdef DEBUG
b9075fa9
JP
24extern __printf(2, 3)
25void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...);
10e38391 26#else
b9075fa9
JP
27static inline __printf(2, 3)
28void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...)
957935dc
CH
29{
30}
10e38391
DC
31#endif
32
9130090b
DC
33extern void assfail(char *expr, char *f, int l);
34
35extern void xfs_hex_dump(void *p, int length);
36
10e38391 37#endif /* __XFS_MESSAGE_H */