]> git.baikalelectronics.ru Git - kernel.git/commit
mmc: block: fix updating ext_csd caches on ioctl call
authorBastian Stender <bst@pengutronix.de>
Thu, 8 Mar 2018 14:08:11 +0000 (15:08 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 15 Mar 2018 13:43:24 +0000 (14:43 +0100)
commit4b65ca1019471ac215853dfca1e25c3a5dc7f14a
tree2b660ad550a0197315156c115a86a8debfacb9bc
parent2ea73eb8de96774b15d5679862fca61f25bd70e4
mmc: block: fix updating ext_csd caches on ioctl call

PARTITION_CONFIG is cached in mmc_card->ext_csd.part_config and the
currently active partition in mmc_blk_data->part_curr. These caches do
not always reflect changes if the ioctl call modifies the
PARTITION_CONFIG registers, e.g. by changing BOOT_PARTITION_ENABLE.

Write the PARTITION_CONFIG value extracted from the ioctl call to the
cache and update the currently active partition accordingly. This
ensures that the user space cannot change the values behind the
kernel's back. The next call to mmc_blk_part_switch() will operate on
the data set by the ioctl and reflect the changes appropriately.

Signed-off-by: Bastian Stender <bst@pengutronix.de>
Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/core/block.c