From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Tue, 06 Nov 2018 23:36:12 +0100 (CET) Received: from mail.bootlin.com ([62.4.15.54]:33664 "EHLO mail.bootlin.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S23992836AbeKFWedgKU7F (ORCPT ); Tue, 6 Nov 2018 23:34:33 +0100 Received: by mail.bootlin.com (Postfix, from userid 110) id C5E7C20712; Tue, 6 Nov 2018 23:34:32 +0100 (CET) Received: from bbrezillon (unknown [91.160.177.164]) by mail.bootlin.com (Postfix) with ESMTPSA id 7336A2039F; Tue, 6 Nov 2018 23:34:32 +0100 (CET) Date: Tue, 6 Nov 2018 23:34:32 +0100 From: Boris Brezillon To: Geert Uytterhoeven Cc: Ricardo Ribalda Delgado , David Woodhouse , Brian Norris , Marek Vasut , Richard Weinberger , Linus Walleij , MTD Maling List , Linux MIPS Mailing List , Linux Kernel Mailing List Subject: Re: [PATCH next] mtd: maps: physmap: Fix infinite loop crash in ROM type probing Message-ID: <20181106233432.76df6bbf@bbrezillon> In-Reply-To: References: <20181106214416.11342-1-geert@linux-m68k.org> <20181106225829.5ecbe19e@bbrezillon> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 67108 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: boris.brezillon@bootlin.com Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips On Tue, 6 Nov 2018 23:19:14 +0100 Geert Uytterhoeven wrote: > Hi Boris, > > On Tue, Nov 6, 2018 at 10:58 PM Boris Brezillon > wrote: > > On Tue, 6 Nov 2018 22:44:16 +0100 > > Geert Uytterhoeven wrote: > > > On Toshiba RBTX4927, where map_probe is supposed to fail: > > > > > > Creating 2 MTD partitions on "physmap-flash.0": > > > 0x000000c00000-0x000001000000 : "boot" > > > 0x000000000000-0x000000c00000 : "user" > > > physmap-flash physmap-flash.1: physmap platform flash device: [mem 0x1e000000-0x1effffff] > > > CPU 0 Unable to handle kernel paging request at virtual address 00000000, epc == 80320f40, ra == 80321004 > > > ... > > > Call Trace: > > > [<80320f40>] get_mtd_chip_driver+0x30/0x8c > > > [<80321004>] do_map_probe+0x20/0x90 > > > [<80328448>] physmap_flash_probe+0x484/0x4ec > > > > > > The access to rom_probe_types[] was changed from a sentinel-based loop > > > to an infinite loop, causing a crash when reaching the sentinel. > > > > Oops. Do you mind if I fix that in-place (squash your changes in > > Ricardo's original commit)? Done. > > No problem. Thanks! Thanks for reporting/fixing the bug. Boris