diff options
author | Josef Bacik <josef@toxicpanda.com> | 2019-05-13 20:21:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-14 12:47:49 -0400 |
commit | cfcbfb1382dbac331d8aa92d3a218a16b803b2a9 (patch) | |
tree | b82c7913d1790f823ed3f6ac5f39118a502571ea /mm/filemap.c | |
parent | c6d23413f81bd69935afedaf1da9d55b03febf58 (diff) |
mm/filemap.c: enable error injection at add_to_page_cache()
Recently I messed up the error handling in filemap_fault() because of an
unexpected ENOMEM (related to cgroup memory limits) in add_to_page_cache.
Enable error injection at this point so I can add a testcase to xfstests
to verify I don't mess this up again.
[akpm@linux-foundation.org: include linux/error-injection.h]
Link: http://lkml.kernel.org/r/20190403152604.14008-1-josef@toxicpanda.com
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r-- | mm/filemap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 4157f858a9c6..0e929b4da48b 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/pagemap.h> | 24 | #include <linux/pagemap.h> |
25 | #include <linux/file.h> | 25 | #include <linux/file.h> |
26 | #include <linux/uio.h> | 26 | #include <linux/uio.h> |
27 | #include <linux/error-injection.h> | ||
27 | #include <linux/hash.h> | 28 | #include <linux/hash.h> |
28 | #include <linux/writeback.h> | 29 | #include <linux/writeback.h> |
29 | #include <linux/backing-dev.h> | 30 | #include <linux/backing-dev.h> |
@@ -882,6 +883,7 @@ error: | |||
882 | put_page(page); | 883 | put_page(page); |
883 | return xas_error(&xas); | 884 | return xas_error(&xas); |
884 | } | 885 | } |
886 | ALLOW_ERROR_INJECTION(__add_to_page_cache_locked, ERRNO); | ||
885 | 887 | ||
886 | /** | 888 | /** |
887 | * add_to_page_cache_locked - add a locked page to the pagecache | 889 | * add_to_page_cache_locked - add a locked page to the pagecache |