Commit f0c077a8 authored by Akinobu Mita's avatar Akinobu Mita Committed by Rafael J. Wysocki

PM: Improve error code of pm_notifier_call_chain()

This enables pm_notifier_call_chain() to get the actual error code
in the callback rather than always assume -EINVAL by converting all
PM notifier calls to return encapsulate error code with
notifier_from_errno().
Signed-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 1d8047a6
...@@ -606,7 +606,7 @@ static int apm_suspend_notifier(struct notifier_block *nb, ...@@ -606,7 +606,7 @@ static int apm_suspend_notifier(struct notifier_block *nb,
return NOTIFY_OK; return NOTIFY_OK;
/* interrupted by signal */ /* interrupted by signal */
return NOTIFY_BAD; return notifier_from_errno(err);
case PM_POST_SUSPEND: case PM_POST_SUSPEND:
/* /*
......
...@@ -258,13 +258,13 @@ static int vmwdt_suspend(void) ...@@ -258,13 +258,13 @@ static int vmwdt_suspend(void)
if (test_and_set_bit(VMWDT_OPEN, &vmwdt_is_open)) { if (test_and_set_bit(VMWDT_OPEN, &vmwdt_is_open)) {
pr_err("The system cannot be suspended while the watchdog" pr_err("The system cannot be suspended while the watchdog"
" is in use\n"); " is in use\n");
return NOTIFY_BAD; return notifier_from_errno(-EBUSY);
} }
if (test_bit(VMWDT_RUNNING, &vmwdt_is_open)) { if (test_bit(VMWDT_RUNNING, &vmwdt_is_open)) {
clear_bit(VMWDT_OPEN, &vmwdt_is_open); clear_bit(VMWDT_OPEN, &vmwdt_is_open);
pr_err("The system cannot be suspended while the watchdog" pr_err("The system cannot be suspended while the watchdog"
" is running\n"); " is running\n");
return NOTIFY_BAD; return notifier_from_errno(-EBUSY);
} }
return NOTIFY_DONE; return NOTIFY_DONE;
} }
......
...@@ -814,8 +814,8 @@ static int css_power_event(struct notifier_block *this, unsigned long event, ...@@ -814,8 +814,8 @@ static int css_power_event(struct notifier_block *this, unsigned long event,
mutex_unlock(&css->mutex); mutex_unlock(&css->mutex);
continue; continue;
} }
if (__chsc_do_secm(css, 0)) ret = __chsc_do_secm(css, 0);
ret = NOTIFY_BAD; ret = notifier_from_errno(ret);
mutex_unlock(&css->mutex); mutex_unlock(&css->mutex);
} }
break; break;
...@@ -831,8 +831,8 @@ static int css_power_event(struct notifier_block *this, unsigned long event, ...@@ -831,8 +831,8 @@ static int css_power_event(struct notifier_block *this, unsigned long event,
mutex_unlock(&css->mutex); mutex_unlock(&css->mutex);
continue; continue;
} }
if (__chsc_do_secm(css, 1)) ret = __chsc_do_secm(css, 1);
ret = NOTIFY_BAD; ret = notifier_from_errno(ret);
mutex_unlock(&css->mutex); mutex_unlock(&css->mutex);
} }
/* search for subchannels, which appeared during hibernation */ /* search for subchannels, which appeared during hibernation */
......
...@@ -37,8 +37,9 @@ EXPORT_SYMBOL_GPL(unregister_pm_notifier); ...@@ -37,8 +37,9 @@ EXPORT_SYMBOL_GPL(unregister_pm_notifier);
int pm_notifier_call_chain(unsigned long val) int pm_notifier_call_chain(unsigned long val)
{ {
return (blocking_notifier_call_chain(&pm_chain_head, val, NULL) int ret = blocking_notifier_call_chain(&pm_chain_head, val, NULL);
== NOTIFY_BAD) ? -EINVAL : 0;
return notifier_to_errno(ret);
} }
/* If set, devices may be suspended and resumed asynchronously. */ /* If set, devices may be suspended and resumed asynchronously. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment