aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXie XiuQi <xiexiuqi@huawei.com>2015-05-14 01:01:39 +0000
committerJohannes Weiner <hannes@cmpxchg.org>2015-05-14 01:01:39 +0000
commit0d23ddbc4671c43b9aec645eed538242398630e5 (patch)
treee0549b53d6f7efbef50dd0dfb9e5092a8bf46928
parent902c8798c6471f539772ddd6ed69be39f50d938f (diff)
downloadmm-next-0d23ddbc4671c43b9aec645eed538242398630e5.tar.gz
memory-failure: change type of action_result's param 3 to enum
Change type of action_result's param 3 to enum for type consistency, and rename mf_outcome to mf_result for clarity. Signed-off-by: Xie XiuQi <xiexiuqi@huawei.com> Acked-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Tony Luck <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--include/linux/mm.h2
-rw-r--r--mm/memory-failure.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index b98e7b480b3e30..b05afc28cde484 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2160,7 +2160,7 @@ extern int soft_offline_page(struct page *page, int flags);
/*
* Error handlers for various types of pages.
*/
-enum mf_outcome {
+enum mf_result {
MF_IGNORED, /* Error: cannot be handled */
MF_FAILED, /* Error: handling failed */
MF_DELAYED, /* Will be handled later */
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index eacc75e42efc5b..aab28472032581 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -848,7 +848,8 @@ static struct page_state {
* "Dirty/Clean" indication is not 100% accurate due to the possibility of
* setting PG_dirty outside page lock. See also comment above set_page_dirty().
*/
-static void action_result(unsigned long pfn, enum mf_action_page_type type, int result)
+static void action_result(unsigned long pfn, enum mf_action_page_type type,
+ enum mf_result result)
{
pr_err("MCE %#lx: recovery action for %s: %s\n",
pfn, action_page_types[type], action_name[result]);