Comment 5 for bug 1715397

Revision history for this message
bugproxy (bugproxy) wrote : Comment bridged from LTC Bugzilla

------- Comment From <email address hidden> 2017-09-08 06:59 EDT-------
(In reply to comment #6)
> Kernel team, IBM is working on a fix with top priority. Please stay tuned
> for a fix from Fred.

Very bad :-( accidently I added "=|!" instead of "=|" in upstream which is causing below warnings in syslog.

This is just a warning comes on PowerNV host and safe to ignore.

Below patch should fix this issue . Can you please verify ?

diff --git a/scripts/rtas_errd.service b/scripts/rtas_errd.service
index 5507b8a..8475c3e 100644
--- a/scripts/rtas_errd.service
+++ b/scripts/rtas_errd.service
@@ -1,7 +1,7 @@
[Unit]
Description=ppc64-diag rtas_errd (platform error handling) Service
-ConditionPathExists=|!/proc/ppc64/rtas/error_log
-ConditionPathExists=|!/proc/ppc64/error_log
+ConditionPathExists=|/proc/ppc64/rtas/error_log
+ConditionPathExists=|/proc/ppc64/error_log
After=syslog.target

[Service]

-Vasant