Lines Matching refs:fmt
24 void ntfs_printk(const struct super_block *sb, const char *fmt, ...);
26 void ntfs_inode_printk(struct inode *inode, const char *fmt, ...);
29 void ntfs_printk(const struct super_block *sb, const char *fmt, ...) in ntfs_printk() argument
34 void ntfs_inode_printk(struct inode *inode, const char *fmt, ...) in ntfs_inode_printk() argument
43 #define ntfs_err(sb, fmt, ...) ntfs_printk(sb, KERN_ERR fmt, ##__VA_ARGS__) argument
44 #define ntfs_warn(sb, fmt, ...) ntfs_printk(sb, KERN_WARNING fmt, ##__VA_ARGS__) argument
45 #define ntfs_info(sb, fmt, ...) ntfs_printk(sb, KERN_INFO fmt, ##__VA_ARGS__) argument
46 #define ntfs_notice(sb, fmt, ...) \ argument
47 ntfs_printk(sb, KERN_NOTICE fmt, ##__VA_ARGS__)
49 #define ntfs_inode_err(inode, fmt, ...) \ argument
50 ntfs_inode_printk(inode, KERN_ERR fmt, ##__VA_ARGS__)
51 #define ntfs_inode_warn(inode, fmt, ...) \ argument
52 ntfs_inode_printk(inode, KERN_WARNING fmt, ##__VA_ARGS__)