diff options
author | Jeff Layton <[email protected]> | 2017-07-06 07:02:19 -0400 |
---|---|---|
committer | Jeff Layton <[email protected]> | 2017-07-06 07:02:19 -0400 |
commit | af21bfaf70a1358f306588232f741b292d9be5a7 (patch) | |
tree | 38bf6117f7244b18a9cb42789d781d7f66401edb | |
parent | c86daad2c25bfd4a33d48b7691afaa96d9c5ab46 (diff) |
mm: fix mapping_set_error call in me_pagecache_dirty
The error code should be negative. Since this ends up in the default case
anyway, this is harmless, but it's less confusing to negate it. Also,
later patches will require a negative error code here.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Jeff Layton <[email protected]>
Reviewed-by: Ross Zwisler <[email protected]>
Reviewed-by: Jan Kara <[email protected]>
Reviewed-by: Matthew Wilcox <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | mm/memory-failure.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory-failure.c b/mm/memory-failure.c index 2527dfeddb00..3c5e0b8162f3 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c @@ -684,7 +684,7 @@ static int me_pagecache_dirty(struct page *p, unsigned long pfn) * the first EIO, but we're not worse than other parts * of the kernel. */ - mapping_set_error(mapping, EIO); + mapping_set_error(mapping, -EIO); } return me_pagecache_clean(p, pfn); |