34 int xfs_etrap[XFS_ERROR_NTRAP] = {
45 for (i = 0; i < XFS_ERROR_NTRAP; i++) {
46 if (xfs_etrap[i] == 0)
48 if (e != xfs_etrap[i])
50 xfs_notice(
NULL,
"%s: error %d", __func__, e);
57 int xfs_etest[XFS_NUM_INJECT_ERROR];
58 int64_t xfs_etest_fsid[XFS_NUM_INJECT_ERROR];
59 char * xfs_etest_fsname[XFS_NUM_INJECT_ERROR];
60 int xfs_error_test_active;
63 xfs_error_test(
int error_tag,
int *fsidp,
char *expression,
64 int line,
char *
file,
unsigned long randfactor)
74 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
75 if (xfs_etest[i] == error_tag && xfs_etest_fsid[i] == fsid) {
77 "Injecting error (%s) at file %s, line %d, on filesystem \"%s\"",
78 expression, file, line, xfs_etest_fsname[i]);
95 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
96 if (xfs_etest_fsid[i] == fsid && xfs_etest[i] == error_tag) {
97 xfs_warn(mp,
"error tag #%d on", error_tag);
102 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
103 if (xfs_etest[i] == 0) {
104 xfs_warn(mp,
"Turned on XFS error tag #%d",
106 xfs_etest[
i] = error_tag;
107 xfs_etest_fsid[
i] =
fsid;
108 len =
strlen(mp->m_fsname);
110 strcpy(xfs_etest_fsname[i], mp->m_fsname);
111 xfs_error_test_active++;
116 xfs_warn(mp,
"error tag overflow, too many turned on");
131 for (i = 0; i < XFS_NUM_INJECT_ERROR; i++) {
132 if ((fsid == 0
LL || xfs_etest_fsid[i] == fsid) &&
135 xfs_warn(mp,
"Clearing XFS error tag #%d",
138 xfs_etest_fsid[
i] = 0
LL;
140 xfs_etest_fsname[
i] =
NULL;
141 xfs_error_test_active--;
146 xfs_warn(mp,
"Cleared all XFS error tags for filesystem");
156 struct xfs_mount *mp,
163 "Internal error %s at line %d of file %s. Caller 0x%p\n",
164 tag, linenum, filename, ra);
174 struct xfs_mount *mp,
183 xfs_alert(mp,
"Corruption detected. Unmount and run xfs_repair");