From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:55219 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751320AbcJENN1 (ORCPT ); Wed, 5 Oct 2016 09:13:27 -0400 Subject: Patch "avr32: off by one in at32_init_pio()" has been added to the 4.7-stable tree To: dan.carpenter@oracle.com, gregkh@linuxfoundation.org Cc: , From: Date: Wed, 05 Oct 2016 15:10:10 +0200 Message-ID: <147567301020221@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled avr32: off by one in at32_init_pio() to the 4.7-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: avr32-off-by-one-in-at32_init_pio.patch and it can be found in the queue-4.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 55f1cf83d5cf885c75267269729805852039c834 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Wed, 13 Jul 2016 13:08:55 +0300 Subject: avr32: off by one in at32_init_pio() From: Dan Carpenter commit 55f1cf83d5cf885c75267269729805852039c834 upstream. The pio_dev[] array has MAX_NR_PIO_DEVICES elements so the > should be >=. Fixes: 5f97f7f9400d ('[PATCH] avr32 architecture') Signed-off-by: Dan Carpenter Signed-off-by: Greg Kroah-Hartman --- arch/avr32/mach-at32ap/pio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/avr32/mach-at32ap/pio.c +++ b/arch/avr32/mach-at32ap/pio.c @@ -435,7 +435,7 @@ void __init at32_init_pio(struct platfor struct resource *regs; struct pio_device *pio; - if (pdev->id > MAX_NR_PIO_DEVICES) { + if (pdev->id >= MAX_NR_PIO_DEVICES) { dev_err(&pdev->dev, "only %d PIO devices supported\n", MAX_NR_PIO_DEVICES); return; Patches currently in stable-queue which might be from dan.carpenter@oracle.com are queue-4.7/fnic-pci_dma_mapping_error-doesn-t-return-an-error-code.patch queue-4.7/dmaengine-at_xdmac-fix-debug-string.patch queue-4.7/avr32-off-by-one-in-at32_init_pio.patch queue-4.7/em28xx-i2c-rt_mutex_trylock-returns-zero-on-failure.patch queue-4.7/usb-gadget-fsl_qe_udc-signedness-bug-in-qe_get_frame.patch