Line data Source code
1 : // SPDX-License-Identifier: GPL-2.0
2 : /*
3 : * Copyright (c) 2011 Red Hat, Inc. All Rights Reserved.
4 : */
5 :
6 : #include "xfs.h"
7 : #include "xfs_fs.h"
8 : #include "xfs_error.h"
9 : #include "xfs_shared.h"
10 : #include "xfs_format.h"
11 : #include "xfs_trans_resv.h"
12 : #include "xfs_mount.h"
13 :
14 : /*
15 : * XFS logging functions
16 : */
17 : static void
18 415364 : __xfs_printk(
19 : const char *level,
20 : const struct xfs_mount *mp,
21 : struct va_format *vaf)
22 : {
23 415364 : if (mp && mp->m_super) {
24 415170 : printk("%sXFS (%s): %pV\n", level, mp->m_super->s_id, vaf);
25 415170 : return;
26 : }
27 194 : printk("%sXFS: %pV\n", level, vaf);
28 : }
29 :
30 : void
31 384229 : xfs_printk_level(
32 : const char *kern_level,
33 : const struct xfs_mount *mp,
34 : const char *fmt, ...)
35 : {
36 384229 : struct va_format vaf;
37 384229 : va_list args;
38 384229 : int level;
39 :
40 384229 : va_start(args, fmt);
41 384229 : vaf.fmt = fmt;
42 384229 : vaf.va = &args;
43 :
44 384229 : __xfs_printk(kern_level, mp, &vaf);
45 :
46 384241 : va_end(args);
47 :
48 384241 : if (!kstrtoint(kern_level, 0, &level) &&
49 0 : level <= LOGLEVEL_ERR &&
50 0 : xfs_error_level >= XFS_ERRLEVEL_HIGH)
51 0 : xfs_stack_trace();
52 384239 : }
53 :
54 : void
55 17694 : _xfs_alert_tag(
56 : const struct xfs_mount *mp,
57 : uint32_t panic_tag,
58 : const char *fmt, ...)
59 : {
60 17694 : struct va_format vaf;
61 17694 : va_list args;
62 17694 : int do_panic = 0;
63 :
64 17694 : if (xfs_panic_mask && (xfs_panic_mask & panic_tag)) {
65 0 : xfs_alert(mp, "Transforming an alert into a BUG.");
66 0 : do_panic = 1;
67 : }
68 :
69 17694 : va_start(args, fmt);
70 :
71 17694 : vaf.fmt = fmt;
72 17694 : vaf.va = &args;
73 :
74 17694 : __xfs_printk(KERN_ALERT, mp, &vaf);
75 17694 : va_end(args);
76 :
77 17694 : BUG_ON(do_panic);
78 17694 : }
79 :
80 : void
81 0 : asswarn(
82 : struct xfs_mount *mp,
83 : char *expr,
84 : char *file,
85 : int line)
86 : {
87 0 : xfs_warn(mp, "Assertion failed: %s, file: %s, line: %d",
88 : expr, file, line);
89 0 : WARN_ON(1);
90 0 : }
91 :
92 : void
93 92 : assfail(
94 : struct xfs_mount *mp,
95 : char *expr,
96 : char *file,
97 : int line)
98 : {
99 92 : xfs_emerg(mp, "Assertion failed: %s, file: %s, line: %d",
100 : expr, file, line);
101 92 : if (xfs_globals.bug_on_assert)
102 0 : BUG();
103 : else
104 92 : WARN_ON(1);
105 92 : }
106 :
107 : void
108 5514 : xfs_hex_dump(const void *p, int length)
109 : {
110 5514 : print_hex_dump(KERN_ALERT, "", DUMP_PREFIX_OFFSET, 16, 1, p, length, 1);
111 5514 : }
112 :
113 : void
114 40498 : xfs_buf_alert_ratelimited(
115 : struct xfs_buf *bp,
116 : const char *rlmsg,
117 : const char *fmt,
118 : ...)
119 : {
120 40498 : struct xfs_mount *mp = bp->b_mount;
121 40498 : struct va_format vaf;
122 40498 : va_list args;
123 :
124 : /* use the more aggressive per-target rate limit for buffers */
125 40498 : if (!___ratelimit(&bp->b_target->bt_ioerror_rl, rlmsg))
126 27064 : return;
127 :
128 13453 : va_start(args, fmt);
129 13453 : vaf.fmt = fmt;
130 13453 : vaf.va = &args;
131 13453 : __xfs_printk(KERN_ALERT, mp, &vaf);
132 13452 : va_end(args);
133 : }
|