Patch "mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set

to the 5.15-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:
     mtd-spi-nor-skip-erase-logic-when-spi_nor_no_erase-i.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 19e11ecc859faa363850ae8ac44ffb24d0886ffe
Author: Tudor Ambarus <tudor.ambarus@xxxxxxxxxxxxx>
Date:   Mon Feb 28 18:33:34 2022 +0200

    mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set
    
    [ Upstream commit 151c6b49d679872d6fc0b50e0ad96303091694a2 ]
    
    Even if SPI_NOR_NO_ERASE was set, one could still send erase opcodes
    to the flash. It is not recommended to send unsupported opcodes to
    flashes. Fix the logic and do not set mtd->_erase when SPI_NOR_NO_ERASE
    is specified. With this users will not be able to issue erase opcodes to
    flashes and instead they will recive an -ENOTSUPP error.
    
    Fixes: b199489d37b2 ("mtd: spi-nor: add the framework for SPI NOR")
    Signed-off-by: Tudor Ambarus <tudor.ambarus@xxxxxxxxxxxxx>
    Reviewed-by: Michael Walle <michael@xxxxxxxx>
    Cc: stable@xxxxxxxxxxxxxxx
    Link: https://lore.kernel.org/r/20220228163334.277730-1-tudor.ambarus@xxxxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
index 90f39aabc1ff..d97cdbc2b9de 100644
--- a/drivers/mtd/spi-nor/core.c
+++ b/drivers/mtd/spi-nor/core.c
@@ -3148,7 +3148,6 @@ int spi_nor_scan(struct spi_nor *nor, const char *name,
 	mtd->writesize = nor->params->writesize;
 	mtd->flags = MTD_CAP_NORFLASH;
 	mtd->size = nor->params->size;
-	mtd->_erase = spi_nor_erase;
 	mtd->_read = spi_nor_read;
 	mtd->_suspend = spi_nor_suspend;
 	mtd->_resume = spi_nor_resume;
@@ -3178,6 +3177,8 @@ int spi_nor_scan(struct spi_nor *nor, const char *name,
 
 	if (info->flags & SPI_NOR_NO_ERASE)
 		mtd->flags |= MTD_NO_ERASE;
+	else
+		mtd->_erase = spi_nor_erase;
 
 	mtd->dev.parent = dev;
 	nor->page_size = nor->params->page_size;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux