This is a note to let you know that I've just added the patch titled cxl: Add missing return statement after handling AFU errror to the 3.19-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: cxl-add-missing-return-statement-after-handling-afu-errror.patch and it can be found in the queue-3.19 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From a6130ed253a931d2169c26ab0958d81b0dce4d6e Mon Sep 17 00:00:00 2001 From: Ian Munsie <imunsie@xxxxxxxxxxx> Date: Wed, 4 Feb 2015 19:10:38 +1100 Subject: cxl: Add missing return statement after handling AFU errror From: Ian Munsie <imunsie@xxxxxxxxxxx> commit a6130ed253a931d2169c26ab0958d81b0dce4d6e upstream. We were missing a return statement in the PSL interrupt handler in the case of an AFU error, which would trigger an "Unhandled CXL PSL IRQ" warning. We do actually handle these type of errors (by notifying userspace), so add the missing return IRQ_HANDLED so we don't throw unecessary warnings. Signed-off-by: Ian Munsie <imunsie@xxxxxxxxxxx> Signed-off-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/misc/cxl/irq.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/misc/cxl/irq.c +++ b/drivers/misc/cxl/irq.c @@ -167,6 +167,7 @@ static irqreturn_t cxl_irq(int irq, void } cxl_ack_irq(ctx, CXL_PSL_TFC_An_A, 0); + return IRQ_HANDLED; } if (dsisr & CXL_PSL_DSISR_An_OC) pr_devel("CXL interrupt: OS Context Warning\n"); Patches currently in stable-queue which might be from imunsie@xxxxxxxxxxx are queue-3.19/cxl-add-missing-return-statement-after-handling-afu-errror.patch queue-3.19/cxl-use-image-state-defaults-for-reloading-fpga.patch queue-3.19/cxl-fix-device_node-reference-counting.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html