aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2017-01-16 14:14:19 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-01-16 14:14:19 +1100
commitfc479923ff2028c4efaa8d3e1a8a45c7c9f74e60 (patch)
treedd6f5efb9551a5f96a565c0ebd339004f97320e1
parent41cace5f87d95664e91f38ee767e01b6737c8299 (diff)
downloadskiboot-skiboot-5.1.19.zip
skiboot-skiboot-5.1.19.tar.gz
skiboot-skiboot-5.1.19.tar.bz2
skiboot 5.1.19 release notesskiboot-5.1.19
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--doc/release-notes/skiboot-5.1.19.txt46
1 files changed, 46 insertions, 0 deletions
diff --git a/doc/release-notes/skiboot-5.1.19.txt b/doc/release-notes/skiboot-5.1.19.txt
new file mode 100644
index 0000000..b5caf91
--- /dev/null
+++ b/doc/release-notes/skiboot-5.1.19.txt
@@ -0,0 +1,46 @@
+skiboot-5.1.19
+--------------
+
+skiboot-5.1.19 was released on Monday 16th January 2017.
+
+skiboot-5.1.19 is the 20th stable release of 5.1, it follows skiboot-5.1.18
+(which was released 26th August 2016).
+
+This release contains a few minor bug fixes.
+
+Changes are:
+
+Generic:
+- Makefile: Disable stack protector due to gcc problems
+- stack: Don't recurse into __stack_chk_fail
+- Makefile: Use -ffixed-r13
+ - we did not find evidence of this ever being a problem, but this fix
+ is good and preventative.
+- Limit number of "Poller recursion detected" errors to display
+ In some error conditions, we could spiral out of control on this
+ and spend all of our time printing the exact same backtrace.
+ Limit it to 16 times, because 16 is a nice number.
+
+FSP based Systems:
+- fsp: Don't recurse pollers in ibm_fsp_terminate
+ If we were to terminate in a poller, we'd call op_display() which
+ called pollers which hit the recursive poller warning, which ended
+ in not much fun at all.
+
+PCI:
+- hw/phb3: set PHB retry state correctly when fresetting during a creset
+- phb3: Lock the PHB on set_xive callbacks
+ Those are called by the interrupts core and thus skip the locking
+ implicit in the PCI opal calls.
+- hw/{phb3, p7ioc}: Return success for freset on empty PHB
+ OPAL_CLOSED is returned when fundamental reset is issued on the
+ PHB who doesn't have subordinate devices (root port excluded).
+ The kernel raises an error message, which is unnecessary. This
+ returns OPAL_SUCCESS for this case to avoid the error message.
+- hw/phb3: fix error handling in complete reset
+ During a complete reset, when we get a timeout waiting for pending
+ transaction in state PHB3_STATE_CRESET_WAIT_CQ, we mark the PHB as broken
+ and return OPAL_PARAMETER.
+ Change the return code to OPAL_HARDWARE which is way more sensible, and set
+ the state to PHB3_STATE_FENCED so that the kernel can retry the complete
+ reset.