1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/fault-inject.h>
3 #include <linux/debugfs.h>
4 #include <linux/error-injection.h>
8 struct fault_attr attr
;
10 bool ignore_gfp_highmem
;
11 bool ignore_gfp_reclaim
;
14 .attr
= FAULT_ATTR_INITIALIZER
,
15 .ignore_gfp_reclaim
= true,
16 .ignore_gfp_highmem
= true,
20 static int __init
setup_fail_page_alloc(char *str
)
22 return setup_fault_attr(&fail_page_alloc
.attr
, str
);
24 __setup("fail_page_alloc=", setup_fail_page_alloc
);
26 bool should_fail_alloc_page(gfp_t gfp_mask
, unsigned int order
)
30 if (order
< fail_page_alloc
.min_order
)
32 if (gfp_mask
& __GFP_NOFAIL
)
34 if (fail_page_alloc
.ignore_gfp_highmem
&& (gfp_mask
& __GFP_HIGHMEM
))
36 if (fail_page_alloc
.ignore_gfp_reclaim
&&
37 (gfp_mask
& __GFP_DIRECT_RECLAIM
))
40 /* See comment in __should_failslab() */
41 if (gfp_mask
& __GFP_NOWARN
)
42 flags
|= FAULT_NOWARN
;
44 return should_fail_ex(&fail_page_alloc
.attr
, 1 << order
, flags
);
46 ALLOW_ERROR_INJECTION(should_fail_alloc_page
, TRUE
);
48 #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
50 static int __init
fail_page_alloc_debugfs(void)
52 umode_t mode
= S_IFREG
| 0600;
55 dir
= fault_create_debugfs_attr("fail_page_alloc", NULL
,
56 &fail_page_alloc
.attr
);
58 debugfs_create_bool("ignore-gfp-wait", mode
, dir
,
59 &fail_page_alloc
.ignore_gfp_reclaim
);
60 debugfs_create_bool("ignore-gfp-highmem", mode
, dir
,
61 &fail_page_alloc
.ignore_gfp_highmem
);
62 debugfs_create_u32("min-order", mode
, dir
, &fail_page_alloc
.min_order
);
67 late_initcall(fail_page_alloc_debugfs
);
69 #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */