This is the start of the stable review cycle for the 4.17.14 release.
There are 18 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Thu Aug 9 17:23:05 UTC 2018.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.17.14-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.17.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.17.14-rc1
Shankara Pailoor <shankarapailoor(a)gmail.com>
jfs: Fix inconsistency between memory allocation and ea_buf->max_size
Dave Chinner <dchinner(a)redhat.com>
xfs: validate cached inodes are free when allocated
Eric Sandeen <sandeen(a)sandeen.net>
xfs: don't call xfs_da_shrink_inode with NULL bp
Linus Torvalds <torvalds(a)linux-foundation.org>
Partially revert "block: fail op_is_write() requests to read-only partitions"
Filipe Manana <fdmanana(a)suse.com>
Btrfs: fix file data corruption after cloning a range and fsync
Esben Haabendal <eha(a)deif.com>
i2c: imx: Fix reinit_completion() use
Masami Hiramatsu <mhiramat(a)kernel.org>
ring_buffer: tracing: Inherit the tracing setting to next ring buffer
Dmitry Safonov <dima(a)arista.com>
netlink: Don't shift on 64 for ngroups
Frederic Weisbecker <frederic(a)kernel.org>
nohz: Fix missing tick reprogram when interrupting an inline softirq
Anna-Maria Gleixner <anna-maria(a)linutronix.de>
nohz: Fix local_timer_softirq_pending()
Kan Liang <kan.liang(a)linux.intel.com>
perf/x86/intel/uncore: Fix hardcoded index of Broadwell extra PCI devices
Thomas Gleixner <tglx(a)linutronix.de>
genirq: Make force irq threading setup more robust
Kees Cook <keescook(a)chromium.org>
jfs: Fix usercopy whitelist for inline inode data
Anil Gurumurthy <anil.gurumurthy(a)cavium.com>
scsi: qla2xxx: Return error when TMF returns
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix ISP recovery on unload
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix driver unload by shutting down chip
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix NPIV deletion by calling wait_for_sess_deletion
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix unintialized List head crash
-------------
Diffstat:
Makefile | 4 +-
arch/x86/events/intel/uncore.h | 2 +-
arch/x86/events/intel/uncore_snbep.c | 10 +++--
block/blk-core.c | 5 ++-
drivers/i2c/busses/i2c-imx.c | 3 +-
drivers/scsi/qla2xxx/qla_attr.c | 1 +
drivers/scsi/qla2xxx/qla_gbl.h | 1 +
drivers/scsi/qla2xxx/qla_gs.c | 4 ++
drivers/scsi/qla2xxx/qla_init.c | 7 ++--
drivers/scsi/qla2xxx/qla_inline.h | 2 +
drivers/scsi/qla2xxx/qla_isr.c | 3 ++
drivers/scsi/qla2xxx/qla_mbx.c | 6 +++
drivers/scsi/qla2xxx/qla_mid.c | 11 +++++-
drivers/scsi/qla2xxx/qla_os.c | 51 +++++++++++--------------
drivers/scsi/qla2xxx/qla_sup.c | 3 ++
fs/btrfs/extent_io.c | 3 ++
fs/jfs/jfs_dinode.h | 7 ++++
fs/jfs/jfs_incore.h | 1 +
fs/jfs/super.c | 3 +-
fs/jfs/xattr.c | 10 +++--
fs/xfs/libxfs/xfs_attr_leaf.c | 5 +--
fs/xfs/xfs_icache.c | 73 ++++++++++++++++++++++++------------
include/linux/ring_buffer.h | 1 +
kernel/irq/manage.c | 9 ++++-
kernel/softirq.c | 2 +-
kernel/time/tick-sched.c | 2 +-
kernel/trace/ring_buffer.c | 16 ++++++++
kernel/trace/trace.c | 6 +++
net/netlink/af_netlink.c | 4 +-
29 files changed, 171 insertions(+), 84 deletions(-)
SWAP support on ARC was fixed earlier by
commit 6e3761145a9b ("ARC: Fix CONFIG_SWAP")
so now we may safely enable it on platforms that
have external media like USB and SD-card.
Signed-off-by: Alexey Brodkin <abrodkin(a)synopsys.com>
Cc: stable(a)vger.kernel.org # 6e3761145a9b: ARC: Fix CONFIG_SWAP
---
arch/arc/configs/axs101_defconfig | 1 -
arch/arc/configs/axs103_defconfig | 1 -
arch/arc/configs/axs103_smp_defconfig | 1 -
3 files changed, 3 deletions(-)
diff --git a/arch/arc/configs/axs101_defconfig b/arch/arc/configs/axs101_defconfig
index 3dbb2b3f60af..96b7258a76be 100644
--- a/arch/arc/configs/axs101_defconfig
+++ b/arch/arc/configs/axs101_defconfig
@@ -1,4 +1,3 @@
-# CONFIG_SWAP is not set
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_CROSS_MEMORY_ATTACH is not set
diff --git a/arch/arc/configs/axs103_defconfig b/arch/arc/configs/axs103_defconfig
index 4d7b85d4b2dc..72fc21ef1334 100644
--- a/arch/arc/configs/axs103_defconfig
+++ b/arch/arc/configs/axs103_defconfig
@@ -1,4 +1,3 @@
-# CONFIG_SWAP is not set
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_CROSS_MEMORY_ATTACH is not set
diff --git a/arch/arc/configs/axs103_smp_defconfig b/arch/arc/configs/axs103_smp_defconfig
index 92417e2e39f3..2ac89bd00e28 100644
--- a/arch/arc/configs/axs103_smp_defconfig
+++ b/arch/arc/configs/axs103_smp_defconfig
@@ -1,4 +1,3 @@
-# CONFIG_SWAP is not set
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_CROSS_MEMORY_ATTACH is not set
--
2.17.1
Every function that returns COMPST_ERROR must set wqe->status to
another value than IB_WC_SUCCESS before returning COMPST_ERROR. Fix
the only code path for which this is not yet the case.
Signed-off-by: Bart Van Assche <bart.vanassche(a)wdc.com>
Cc: Zhu Yanjun <yanjun.zhu(a)oracle.com>
Cc: Jianchao Wang <jianchao.w.wang(a)oracle.com>
Cc: Yuval Shaia <yuval.shaia(a)oracle.com>
Cc: <stable(a)vger.kernel.org>
---
Changes compared to v1: left out a pr_err() statement as requested by Jason.
drivers/infiniband/sw/rxe/rxe_comp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/infiniband/sw/rxe/rxe_comp.c b/drivers/infiniband/sw/rxe/rxe_comp.c
index 98d470d1f3fc..83311dd07019 100644
--- a/drivers/infiniband/sw/rxe/rxe_comp.c
+++ b/drivers/infiniband/sw/rxe/rxe_comp.c
@@ -276,6 +276,7 @@ static inline enum comp_state check_ack(struct rxe_qp *qp,
case IB_OPCODE_RC_RDMA_READ_RESPONSE_MIDDLE:
if (wqe->wr.opcode != IB_WR_RDMA_READ &&
wqe->wr.opcode != IB_WR_RDMA_READ_WITH_INV) {
+ wqe->status = IB_WC_FATAL_ERR;
return COMPST_ERROR;
}
reset_retry_counters(qp);
--
2.17.1
This is the start of the stable review cycle for the 4.14.62 release.
There are 21 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Thu Aug 9 17:23:22 UTC 2018.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.14.62-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.14.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.14.62-rc1
Shankara Pailoor <shankarapailoor(a)gmail.com>
jfs: Fix inconsistency between memory allocation and ea_buf->max_size
Eric Sandeen <sandeen(a)sandeen.net>
xfs: don't call xfs_da_shrink_inode with NULL bp
Dave Chinner <dchinner(a)redhat.com>
xfs: validate cached inodes are free when allocated
Dave Chinner <dchinner(a)redhat.com>
xfs: catch inode allocation state mismatch corruption
Len Brown <len.brown(a)intel.com>
intel_idle: Graceful probe failure when MWAIT is disabled
James Smart <jsmart2021(a)gmail.com>
nvmet-fc: fix target sgl list on large transfers
Keith Busch <keith.busch(a)intel.com>
nvme-pci: Fix queue double allocations
Sagi Grimberg <sagi(a)grimberg.me>
nvme-pci: allocate device queues storage space at probe
Filipe Manana <fdmanana(a)suse.com>
Btrfs: fix file data corruption after cloning a range and fsync
Esben Haabendal <eha(a)deif.com>
i2c: imx: Fix reinit_completion() use
Masami Hiramatsu <mhiramat(a)kernel.org>
ring_buffer: tracing: Inherit the tracing setting to next ring buffer
Vitaly Kuznetsov <vkuznets(a)redhat.com>
ACPI / PCI: Bail early in acpi_pci_add_bus() if there is no ACPI handle
Theodore Ts'o <tytso(a)mit.edu>
ext4: fix false negatives *and* false positives in ext4_check_descriptors()
Dmitry Safonov <dima(a)arista.com>
netlink: Don't shift on 64 for ngroups
Frederic Weisbecker <frederic(a)kernel.org>
nohz: Fix missing tick reprogram when interrupting an inline softirq
Anna-Maria Gleixner <anna-maria(a)linutronix.de>
nohz: Fix local_timer_softirq_pending()
Thomas Gleixner <tglx(a)linutronix.de>
genirq: Make force irq threading setup more robust
Anil Gurumurthy <anil.gurumurthy(a)cavium.com>
scsi: qla2xxx: Return error when TMF returns
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix ISP recovery on unload
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix NPIV deletion by calling wait_for_sess_deletion
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix unintialized List head crash
-------------
Diffstat:
Makefile | 4 +--
drivers/i2c/busses/i2c-imx.c | 3 +-
drivers/idle/intel_idle.c | 7 ++++-
drivers/nvme/host/pci.c | 64 +++++++++++++++++----------------------
drivers/nvme/target/fc.c | 44 +++++++++++++++++++++------
drivers/pci/pci-acpi.c | 2 +-
drivers/scsi/qla2xxx/qla_attr.c | 1 +
drivers/scsi/qla2xxx/qla_gbl.h | 1 +
drivers/scsi/qla2xxx/qla_gs.c | 4 +++
drivers/scsi/qla2xxx/qla_init.c | 7 ++---
drivers/scsi/qla2xxx/qla_inline.h | 2 ++
drivers/scsi/qla2xxx/qla_mid.c | 5 +++
drivers/scsi/qla2xxx/qla_os.c | 7 +++--
fs/btrfs/extent_io.c | 3 ++
fs/ext4/super.c | 4 +--
fs/jfs/xattr.c | 10 +++---
fs/xfs/libxfs/xfs_attr_leaf.c | 5 ++-
fs/xfs/xfs_icache.c | 58 ++++++++++++++++++++++++++++++-----
include/linux/ring_buffer.h | 1 +
kernel/irq/manage.c | 9 +++++-
kernel/softirq.c | 2 +-
kernel/time/tick-sched.c | 2 +-
kernel/trace/ring_buffer.c | 16 ++++++++++
kernel/trace/trace.c | 6 ++++
net/netlink/af_netlink.c | 4 +--
25 files changed, 192 insertions(+), 79 deletions(-)
This is the start of the stable review cycle for the 4.9.119 release.
There are 17 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Thu Aug 9 17:23:30 UTC 2018.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.9.119-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.9.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.9.119-rc1
Shankara Pailoor <shankarapailoor(a)gmail.com>
jfs: Fix inconsistency between memory allocation and ea_buf->max_size
Michael J. Ruhl <michael.j.ruhl(a)intel.com>
IB/hfi1: Fix incorrect mixing of ERR_PTR and NULL return values
Kees Cook <keescook(a)chromium.org>
fork: unconditionally clear stack on fork
Konstantin Khlebnikov <khlebnikov(a)yandex-team.ru>
kmemleak: clear stale pointers from task stacks
Eric Dumazet <edumazet(a)google.com>
tcp: add tcp_ooo_try_coalesce() helper
Filipe Manana <fdmanana(a)suse.com>
Btrfs: fix file data corruption after cloning a range and fsync
Esben Haabendal <eha(a)deif.com>
i2c: imx: Fix reinit_completion() use
Masami Hiramatsu <mhiramat(a)kernel.org>
ring_buffer: tracing: Inherit the tracing setting to next ring buffer
Vitaly Kuznetsov <vkuznets(a)redhat.com>
ACPI / PCI: Bail early in acpi_pci_add_bus() if there is no ACPI handle
Theodore Ts'o <tytso(a)mit.edu>
ext4: fix false negatives *and* false positives in ext4_check_descriptors()
Dmitry Safonov <dima(a)arista.com>
netlink: Don't shift on 64 for ngroups
Dmitry Safonov <dima(a)arista.com>
netlink: Don't shift with UB on nlk->ngroups
Dmitry Safonov <dima(a)arista.com>
netlink: Do not subscribe to non-existent groups
Anna-Maria Gleixner <anna-maria(a)linutronix.de>
nohz: Fix local_timer_softirq_pending()
Thomas Gleixner <tglx(a)linutronix.de>
genirq: Make force irq threading setup more robust
Anil Gurumurthy <anil.gurumurthy(a)cavium.com>
scsi: qla2xxx: Return error when TMF returns
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix ISP recovery on unload
-------------
Diffstat:
Makefile | 4 ++--
drivers/i2c/busses/i2c-imx.c | 3 +--
drivers/infiniband/hw/hfi1/rc.c | 2 +-
drivers/infiniband/hw/hfi1/uc.c | 4 ++--
drivers/infiniband/hw/hfi1/ud.c | 4 ++--
drivers/infiniband/hw/hfi1/verbs_txreq.c | 4 ++--
drivers/infiniband/hw/hfi1/verbs_txreq.h | 4 ++--
drivers/pci/pci-acpi.c | 2 +-
drivers/scsi/qla2xxx/qla_init.c | 7 +++----
drivers/scsi/qla2xxx/qla_os.c | 5 +++--
fs/btrfs/extent_io.c | 3 +++
fs/ext4/super.c | 4 ++--
fs/jfs/xattr.c | 10 ++++++----
include/linux/ring_buffer.h | 1 +
include/linux/thread_info.h | 7 +------
kernel/fork.c | 3 +++
kernel/irq/manage.c | 9 ++++++++-
kernel/time/tick-sched.c | 2 +-
kernel/trace/ring_buffer.c | 16 ++++++++++++++++
kernel/trace/trace.c | 6 ++++++
net/ipv4/tcp_input.c | 23 +++++++++++++++++++++--
net/netlink/af_netlink.c | 5 +++++
22 files changed, 92 insertions(+), 36 deletions(-)
This is the start of the stable review cycle for the 4.4.147 release.
There are 12 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Thu Aug 9 17:23:34 UTC 2018.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.4.147-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.4.147-rc1
Shankara Pailoor <shankarapailoor(a)gmail.com>
jfs: Fix inconsistency between memory allocation and ea_buf->max_size
Esben Haabendal <eha(a)deif.com>
i2c: imx: Fix reinit_completion() use
Masami Hiramatsu <mhiramat(a)kernel.org>
ring_buffer: tracing: Inherit the tracing setting to next ring buffer
Vitaly Kuznetsov <vkuznets(a)redhat.com>
ACPI / PCI: Bail early in acpi_pci_add_bus() if there is no ACPI handle
Theodore Ts'o <tytso(a)mit.edu>
ext4: fix false negatives *and* false positives in ext4_check_descriptors()
Dmitry Safonov <dima(a)arista.com>
netlink: Don't shift on 64 for ngroups
Dmitry Safonov <dima(a)arista.com>
netlink: Don't shift with UB on nlk->ngroups
Dmitry Safonov <dima(a)arista.com>
netlink: Do not subscribe to non-existent groups
Anna-Maria Gleixner <anna-maria(a)linutronix.de>
nohz: Fix local_timer_softirq_pending()
Thomas Gleixner <tglx(a)linutronix.de>
genirq: Make force irq threading setup more robust
Anil Gurumurthy <anil.gurumurthy(a)cavium.com>
scsi: qla2xxx: Return error when TMF returns
Quinn Tran <quinn.tran(a)cavium.com>
scsi: qla2xxx: Fix ISP recovery on unload
-------------
Diffstat:
Makefile | 4 ++--
drivers/i2c/busses/i2c-imx.c | 3 +--
drivers/pci/pci-acpi.c | 2 +-
drivers/scsi/qla2xxx/qla_init.c | 7 +++----
drivers/scsi/qla2xxx/qla_os.c | 5 +++--
fs/ext4/super.c | 4 ++--
fs/jfs/xattr.c | 10 ++++++----
include/linux/ring_buffer.h | 1 +
kernel/irq/manage.c | 9 ++++++++-
kernel/time/tick-sched.c | 2 +-
kernel/trace/ring_buffer.c | 16 ++++++++++++++++
kernel/trace/trace.c | 6 ++++++
net/netlink/af_netlink.c | 5 +++++
13 files changed, 55 insertions(+), 19 deletions(-)
Several block drivers call alloc_disk() followed by put_disk() if
something fails before device_add_disk() is called without calling
blk_cleanup_queue(). Make sure that also for this scenario a request
queue is dissociated from the cgroup controller. This patch avoids
that loading the parport_pc, paride and pf drivers triggers the
following kernel crash:
BUG: KASAN: null-ptr-deref in pi_init+0x42e/0x580 [paride]
Read of size 4 at addr 0000000000000008 by task modprobe/744
Call Trace:
dump_stack+0x9a/0xeb
kasan_report+0x139/0x350
pi_init+0x42e/0x580 [paride]
pf_init+0x2bb/0x1000 [pf]
do_one_initcall+0x8e/0x405
do_init_module+0xd9/0x2f2
load_module+0x3ab4/0x4700
SYSC_finit_module+0x176/0x1a0
do_syscall_64+0xee/0x2b0
entry_SYSCALL_64_after_hwframe+0x42/0xb7
Reported-by: Alexandru Moise <00moses.alexander00(a)gmail.com>
Fixes: a063057d7c73 ("block: Fix a race between request queue removal and the block cgroup controller") # v4.17
Signed-off-by: Bart Van Assche <bart.vanassche(a)wdc.com>
Tested-by: Alexandru Moise <00moses.alexander00(a)gmail.com>
Cc: Tejun Heo <tj(a)kernel.org>
Cc: Christoph Hellwig <hch(a)lst.de>
Cc: Ming Lei <ming.lei(a)redhat.com>
Cc: Johannes Thumshirn <jthumshirn(a)suse.de>
Cc: Alexandru Moise <00moses.alexander00(a)gmail.com>
Cc: Joseph Qi <joseph.qi(a)linux.alibaba.com>
Cc: <stable(a)vger.kernel.org>
---
block/blk-sysfs.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
index ca1984ecbdeb..26275d9babcb 100644
--- a/block/blk-sysfs.c
+++ b/block/blk-sysfs.c
@@ -802,6 +802,31 @@ static void __blk_release_queue(struct work_struct *work)
blk_stat_remove_callback(q, q->poll_cb);
blk_stat_free_callback(q->poll_cb);
+ if (!blk_queue_dead(q)) {
+ /*
+ * Last reference was dropped without having called
+ * blk_cleanup_queue().
+ */
+ WARN_ONCE(blk_queue_init_done(q),
+ "request queue %p has been registered but blk_cleanup_queue() has not been called for that queue\n",
+ q);
+ blk_exit_queue(q);
+ }
+
+#ifdef CONFIG_BLK_CGROUP
+ {
+ struct blkcg_gq *blkg;
+
+ rcu_read_lock();
+ blkg = blkg_lookup(&blkcg_root, q);
+ rcu_read_unlock();
+
+ WARN(blkg,
+ "request queue %p is being released but it has not yet been removed from the blkcg controller\n",
+ q);
+ }
+#endif
+
blk_free_queue_stats(q->stats);
blk_exit_rl(q, &q->root_rl);
--
2.18.0
This patch series includes some improvement to Machine check handler
for pSeries. Patch 1 fixes a buffer overrun issue if rtas extended error
log size is greater than RTAS_ERROR_LOG_MAX.
Patch 2 fixes an issue where machine check handler crashes
kernel while accessing vmalloc-ed buffer while in nmi context.
Patch 3 fixes endain bug while restoring of r3 in MCE handler.
Patch 5 implements a real mode mce handler and flushes the SLBs on SLB error.
Patch 6 display's the MCE error details on console.
Patch 7 saves and dumps the SLB contents on SLB MCE errors to improve the
debugability.
Patch 8 consolidates mce early real mode handling code.
Change in V6:
- Introduce patch 8 to consolidate early real mode handling code.
- Address Nick's comment on erroneous hunk.
Change in V5:
- Use min_t instead of max_t.
- Fix an issue reported by kbuild test robot and address review comments.
Change in V4:
- Flush the SLBs in real mode mce handler to handle SLB errors for entry 0.
- Allocate buffers per cpu to hold rtas error log and old slb contents.
- Defer the logging of rtas error log to irq work queue.
Change in V3:
- Moved patch 5 to patch 2
Change in V2:
- patch 3: Display additional info (NIP and task info) in MCE error details.
- patch 5: Fix endain bug while restoring of r3 in MCE handler.
---
Mahesh Salgaonkar (8):
powerpc/pseries: Avoid using the size greater than RTAS_ERROR_LOG_MAX.
powerpc/pseries: Defer the logging of rtas error to irq work queue.
powerpc/pseries: Fix endainness while restoring of r3 in MCE handler.
powerpc/pseries: Define MCE error event section.
powerpc/pseries: flush SLB contents on SLB MCE errors.
powerpc/pseries: Display machine check error details.
powerpc/pseries: Dump the SLB contents on SLB MCE errors.
powernv/pseries: consolidate code for mce early handling.
arch/powerpc/include/asm/book3s/64/mmu-hash.h | 8 +
arch/powerpc/include/asm/machdep.h | 1
arch/powerpc/include/asm/paca.h | 4
arch/powerpc/include/asm/rtas.h | 116 ++++++++++++
arch/powerpc/kernel/exceptions-64s.S | 18 +-
arch/powerpc/kernel/mce.c | 16 +-
arch/powerpc/mm/slb.c | 63 +++++++
arch/powerpc/platforms/pseries/pseries.h | 1
arch/powerpc/platforms/pseries/ras.c | 242 +++++++++++++++++++++++--
arch/powerpc/platforms/pseries/setup.c | 27 +++
10 files changed, 471 insertions(+), 25 deletions(-)
--
Signature