Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.2-rc3 37 lines 1.1 kB view raw
1#ifndef __XFS_MESSAGE_H 2#define __XFS_MESSAGE_H 1 3 4struct xfs_mount; 5 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, ...); 22 23#ifdef DEBUG 24extern __printf(2, 3) 25void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...); 26#else 27static inline __printf(2, 3) 28void xfs_debug(const struct xfs_mount *mp, const char *fmt, ...) 29{ 30} 31#endif 32 33extern void assfail(char *expr, char *f, int l); 34 35extern void xfs_hex_dump(void *p, int length); 36 37#endif /* __XFS_MESSAGE_H */