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 211145 : __xfs_printk(
19 : const char *level,
20 : const struct xfs_mount *mp,
21 : struct va_format *vaf)
22 : {
23 211145 : if (mp && mp->m_super) {
24 211114 : printk("%sXFS (%s): %pV\n", level, mp->m_super->s_id, vaf);
25 211114 : return;
26 : }
27 46 : printk("%sXFS: %pV\n", level, vaf);
28 : }
29 :
30 : void
31 186605 : xfs_printk_level(
32 : const char *kern_level,
33 : const struct xfs_mount *mp,
34 : const char *fmt, ...)
35 : {
36 186605 : struct va_format vaf;
37 186605 : va_list args;
38 186605 : int level;
39 :
40 186605 : va_start(args, fmt);
41 186605 : vaf.fmt = fmt;
42 186605 : vaf.va = &args;
43 :
44 186605 : __xfs_printk(kern_level, mp, &vaf);
45 :
46 186604 : va_end(args);
47 :
48 186604 : 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 186602 : }
53 :
54 : void
55 11861 : _xfs_alert_tag(
56 : const struct xfs_mount *mp,
57 : uint32_t panic_tag,
58 : const char *fmt, ...)
59 : {
60 11861 : struct va_format vaf;
61 11861 : va_list args;
62 11861 : int do_panic = 0;
63 :
64 11861 : 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 11861 : va_start(args, fmt);
70 :
71 11861 : vaf.fmt = fmt;
72 11861 : vaf.va = &args;
73 :
74 11861 : __xfs_printk(KERN_ALERT, mp, &vaf);
75 11861 : va_end(args);
76 :
77 11861 : BUG_ON(do_panic);
78 11861 : }
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 11 : assfail(
94 : struct xfs_mount *mp,
95 : char *expr,
96 : char *file,
97 : int line)
98 : {
99 11 : xfs_emerg(mp, "Assertion failed: %s, file: %s, line: %d",
100 : expr, file, line);
101 11 : if (xfs_globals.bug_on_assert)
102 0 : BUG();
103 : else
104 11 : WARN_ON(1);
105 11 : }
106 :
107 : void
108 1296 : xfs_hex_dump(const void *p, int length)
109 : {
110 1296 : print_hex_dump(KERN_ALERT, "", DUMP_PREFIX_OFFSET, 16, 1, p, length, 1);
111 1296 : }
112 :
113 : void
114 30361 : xfs_buf_alert_ratelimited(
115 : struct xfs_buf *bp,
116 : const char *rlmsg,
117 : const char *fmt,
118 : ...)
119 : {
120 30361 : struct xfs_mount *mp = bp->b_mount;
121 30361 : struct va_format vaf;
122 30361 : va_list args;
123 :
124 : /* use the more aggressive per-target rate limit for buffers */
125 30361 : if (!___ratelimit(&bp->b_target->bt_ioerror_rl, rlmsg))
126 17677 : return;
127 :
128 12694 : va_start(args, fmt);
129 12694 : vaf.fmt = fmt;
130 12694 : vaf.va = &args;
131 12694 : __xfs_printk(KERN_ALERT, mp, &vaf);
132 12705 : va_end(args);
133 : }
|