disable some mediatekl custom warnings
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / xfs / xfs_error.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
1da177e4 21#include "xfs_log.h"
1da177e4 22#include "xfs_trans.h"
a844f451 23#include "xfs_sb.h"
da353b0d 24#include "xfs_ag.h"
1da177e4
LT
25#include "xfs_mount.h"
26#include "xfs_bmap_btree.h"
1da177e4
LT
27#include "xfs_dinode.h"
28#include "xfs_inode.h"
29#include "xfs_utils.h"
30#include "xfs_error.h"
31
32#ifdef DEBUG
33
34int xfs_etrap[XFS_ERROR_NTRAP] = {
35 0,
36};
37
38int
39xfs_error_trap(int e)
40{
41 int i;
42
43 if (!e)
44 return 0;
45 for (i = 0; i < XFS_ERROR_NTRAP; i++) {
46 if (xfs_etrap[i] == 0)
47 break;
48 if (e != xfs_etrap[i])
49 continue;
0b932ccc 50 xfs_notice(NULL, "%s: error %d", __func__, e);
1da177e4
LT
51 BUG();
52 break;
53 }
54 return e;
55}
1da177e4
LT
56
57int xfs_etest[XFS_NUM_INJECT_ERROR];
58int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR];
59char * xfs_etest_fsname[XFS_NUM_INJECT_ERROR];
c76febef 60int xfs_error_test_active;
1da177e4 61
1da177e4
LT
62int
63xfs_error_test(int error_tag, int *fsidp, char *expression,
64 int line, char *file, unsigned long randfactor)
65{
66 int i;
67 int64_t fsid;
68
ecb3403d 69 if (prandom_u32() % randfactor)
1da177e4
LT
70 return 0;
71
72 memcpy(&fsid, fsidp, sizeof(xfs_fsid_t));
73
74 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
75 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
0b932ccc 76 xfs_warn(NULL,
1da177e4
LT
77 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
78 expression, file, line, xfs_etest_fsname[i]);
79 return 1;
80 }
81 }
82
83 return 0;
84}
85
86int
87xfs_errortag_add(int error_tag, xfs_mount_t *mp)
88{
89 int i;
90 int len;
91 int64_t fsid;
92
93 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
94
95 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
96 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
0b932ccc 97 xfs_warn(mp, "error tag #%d on", error_tag);
1da177e4
LT
98 return 0;
99 }
100 }
101
102 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
103 if (xfs_etest[i] == 0) {
0b932ccc 104 xfs_warn(mp, "Turned on XFS error tag #%d",
1da177e4
LT
105 error_tag);
106 xfs_etest[i] = error_tag;
107 xfs_etest_fsid[i] = fsid;
108 len = strlen(mp->m_fsname);
109 xfs_etest_fsname[i] = kmem_alloc(len + 1, KM_SLEEP);
110 strcpy(xfs_etest_fsname[i], mp->m_fsname);
c76febef 111 xfs_error_test_active++;
1da177e4
LT
112 return 0;
113 }
114 }
115
0b932ccc 116 xfs_warn(mp, "error tag overflow, too many turned on");
1da177e4
LT
117
118 return 1;
119}
120
1da177e4 121int
0ce4cfd4 122xfs_errortag_clearall(xfs_mount_t *mp, int loud)
1da177e4 123{
0ce4cfd4 124 int64_t fsid;
1da177e4 125 int cleared = 0;
0ce4cfd4
CH
126 int i;
127
128 memcpy(&fsid, mp->m_fixedfsid, sizeof(xfs_fsid_t));
129
1da177e4
LT
130
131 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
132 if ((fsid == 0LL || xfs_etest_fsid[i] == fsid) &&
133 xfs_etest[i] != 0) {
134 cleared = 1;
0b932ccc 135 xfs_warn(mp, "Clearing XFS error tag #%d",
1da177e4
LT
136 xfs_etest[i]);
137 xfs_etest[i] = 0;
138 xfs_etest_fsid[i] = 0LL;
f0e2d93c 139 kmem_free(xfs_etest_fsname[i]);
1da177e4 140 xfs_etest_fsname[i] = NULL;
c76febef 141 xfs_error_test_active--;
1da177e4
LT
142 }
143 }
144
145 if (loud || cleared)
0b932ccc 146 xfs_warn(mp, "Cleared all XFS error tags for filesystem");
1da177e4
LT
147
148 return 0;
149}
1550d0b0 150#endif /* DEBUG */
1da177e4 151
1da177e4
LT
152void
153xfs_error_report(
a0e856b0
AE
154 const char *tag,
155 int level,
156 struct xfs_mount *mp,
157 const char *filename,
158 int linenum,
159 inst_t *ra)
1da177e4
LT
160{
161 if (level <= xfs_error_level) {
6a19d939
DC
162 xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT,
163 "Internal error %s at line %d of file %s. Caller 0x%p\n",
a0e856b0 164 tag, linenum, filename, ra);
1da177e4
LT
165
166 xfs_stack_trace();
167 }
168}
169
1da177e4
LT
170void
171xfs_corruption_error(
a0e856b0
AE
172 const char *tag,
173 int level,
174 struct xfs_mount *mp,
175 void *p,
176 const char *filename,
177 int linenum,
178 inst_t *ra)
1da177e4
LT
179{
180 if (level <= xfs_error_level)
a2050646 181 xfs_hex_dump(p, 64);
a0e856b0 182 xfs_error_report(tag, level, mp, filename, linenum, ra);
65333b4c 183 xfs_alert(mp, "Corruption detected. Unmount and run xfs_repair");
1da177e4 184}