aboutsummaryrefslogtreecommitdiff
path: root/doc
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:26:34 +1100
commitab63973d3f333f84722bfea8d186041720ddbfde (patch)
tree024032dc55a7bc27e093d867e171d002aaf8c7b4 /doc
parent1fac82aa3948a9def96de831b55a09283e3ad8f0 (diff)
downloadskiboot-ab63973d3f333f84722bfea8d186041720ddbfde.zip
skiboot-ab63973d3f333f84722bfea8d186041720ddbfde.tar.gz
skiboot-ab63973d3f333f84722bfea8d186041720ddbfde.tar.bz2
skiboot 5.1.19 release notes
(cherry picked from 5.1.x commit fc479923ff2028c4efaa8d3e1a8a45c7c9f74e60) Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes/skiboot-5.1.19.rst49
1 files changed, 49 insertions, 0 deletions
diff --git a/doc/release-notes/skiboot-5.1.19.rst b/doc/release-notes/skiboot-5.1.19.rst
new file mode 100644
index 0000000..e13a471
--- /dev/null
+++ b/doc/release-notes/skiboot-5.1.19.rst
@@ -0,0 +1,49 @@
+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.