From: Jean-Marc Eurin Date: Thu, 21 Apr 2022 23:42:42 +0000 (-0700) Subject: mtd: mtdoops: Fix the size of the header read buffer. X-Git-Tag: v6.1-rc5~1305^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbb83e546ea4543ab0c59dcbfc5a5a1471ea1806;p=platform%2Fkernel%2Flinux-starfive.git mtd: mtdoops: Fix the size of the header read buffer. The read buffer size depends on the MTDOOPS_HEADER_SIZE. Tested: Changed the header size, it doesn't panic, header is still read/written correctly. Signed-off-by: Jean-Marc Eurin Signed-off-by: Miquel Raynal Link: https://lore.kernel.org/linux-mtd/20220421234244.2172003-2-jmeurin@google.com --- diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index 227df24..09a2674 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c @@ -223,7 +223,7 @@ static void find_next_position(struct mtdoops_context *cxt) { struct mtd_info *mtd = cxt->mtd; int ret, page, maxpos = 0; - u32 count[2], maxcount = 0xffffffff; + u32 count[MTDOOPS_HEADER_SIZE/sizeof(u32)], maxcount = 0xffffffff; size_t retlen; for (page = 0; page < cxt->oops_pages; page++) {