aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMahesh Salgaonkar <mahesh@linux.vnet.ibm.com>2018-05-11 19:28:43 +0530
committerStewart Smith <stewart@linux.ibm.com>2018-05-28 12:22:21 +1000
commit92bd1c4bbebd25886adabe7ff275e3ca0c600234 (patch)
tree01377bb03ac97d6dd9c2d69706c5ffb53410bcb8
parentb5f8695e8983afc18caab65003cffe6b5bf4d5ec (diff)
downloadskiboot-92bd1c4bbebd25886adabe7ff275e3ca0c600234.zip
skiboot-92bd1c4bbebd25886adabe7ff275e3ca0c600234.tar.gz
skiboot-92bd1c4bbebd25886adabe7ff275e3ca0c600234.tar.bz2
opal-prd: Do not error out on first failure for soft/hard offline.
The memory errors (CEs and UEs) that are detected as part of background memory scrubbing are reported by PRD asynchronously to opal-prd along with affected memory ranges. hservice_memory_error() converts these ranges into page granularity before hooking up them to soft/hard offline-ing infrastructure. But the current implementation of hservice_memory_error() does not hookup all the pages to soft/hard offline-ing if any of the page offline action fails. e.g hard offline can fail for: - Pages that are not part of buddy managed pool. - Pages that are reserved by kernel using memblock_reserved() - Pages that are in use by kernel. But for the pages that are in use by user space application, the hard offline marks the page as hwpoison, sends SIGBUS signal to kill the affected application as recovery action and returns success. Hence, It is possible that some of the pages in that memory range are in use by application or free. By stopping on first error we loose the opportunity to hwpoison the subsequent pages which may be free or in use by application. This patch fixes this issue. Signed-off-by: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com> (cherry picked from commit e9ee7c7d357160a704c8248a1787124f94df8c54) Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--external/opal-prd/opal-prd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/external/opal-prd/opal-prd.c b/external/opal-prd/opal-prd.c
index 1723924..aa5aaf0 100644
--- a/external/opal-prd/opal-prd.c
+++ b/external/opal-prd/opal-prd.c
@@ -608,7 +608,7 @@ int hservice_memory_error(uint64_t i_start_addr, uint64_t i_endAddr,
{
const char *sysfsfile, *typestr;
char buf[ADDR_STRING_SZ];
- int memfd, rc, n;
+ int memfd, rc, n, ret = 0;
uint64_t addr;
switch(i_errorType) {
@@ -644,11 +644,11 @@ int hservice_memory_error(uint64_t i_start_addr, uint64_t i_endAddr,
pr_log(LOG_CRIT, "MEM: Failed to offline memory! "
"page addr: %016lx type: %d: %m",
addr, i_errorType);
- return rc;
+ ret = rc;
}
}
- return 0;
+ return ret;
}
uint64_t hservice_get_interface_capabilities(uint64_t set)