mmc: sdhci: Do not lock spinlock around mmc_gpio_get_ro()
authorAdrian Hunter <adrian.hunter@intel.com>
Fri, 14 Jun 2024 08:00:50 +0000 (11:00 +0300)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 20 Jun 2024 14:42:30 +0000 (16:42 +0200)
sdhci_check_ro() can call mmc_gpio_get_ro() while holding the sdhci
host->lock spinlock. That would be a problem if the GPIO access done by
mmc_gpio_get_ro() needed to sleep.

However, host->lock is not needed anyway. The mmc core ensures that host
operations do not race with each other, and asynchronous callbacks like the
interrupt handler, software timeouts, completion work etc, cannot affect
sdhci_check_ro().

So remove the locking.

Fixes: 6d5cd068ee59 ("mmc: sdhci: use WP GPIO in sdhci_check_ro()")
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20240614080051.4005-3-adrian.hunter@intel.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci.c

index 81b81d7bb3d81bf51258b077ca150d9dccf97491..112584aa077231eed8a1d86ca77a4c1e55d45d1a 100644 (file)
@@ -2516,11 +2516,8 @@ EXPORT_SYMBOL_GPL(sdhci_get_cd_nogpio);
 static int sdhci_check_ro(struct sdhci_host *host)
 {
        bool allow_invert = false;
-       unsigned long flags;
        int is_readonly;
 
-       spin_lock_irqsave(&host->lock, flags);
-
        if (host->flags & SDHCI_DEVICE_DEAD) {
                is_readonly = 0;
        } else if (host->ops->get_ro) {
@@ -2535,8 +2532,6 @@ static int sdhci_check_ro(struct sdhci_host *host)
                allow_invert = true;
        }
 
-       spin_unlock_irqrestore(&host->lock, flags);
-
        if (is_readonly >= 0 &&
            allow_invert &&
            (host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT))