]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ata: libata-eh: Increase STANDBY IMMEDIATE timeout
authorMatt Vollrath <tactii@gmail.com>
Fri, 24 Jul 2026 07:39:42 +0000 (03:39 -0400)
committerDamien Le Moal <dlemoal@kernel.org>
Tue, 28 Jul 2026 03:04:17 +0000 (12:04 +0900)
Correct a previous change (see Fixes) which reduced the standby timeout
from 30 to 5 seconds. Increase it to 15 seconds.

I was troubleshooting an error spotted during system suspend:

    [ 1217.152867] ata1.00: Entering standby power mode
    [ 1222.322948] ata1.00: qc timeout after 5000 msecs (cmd 0xe0)
    [ 1222.324010] ata1.00: STANDBY IMMEDIATE failed (err_mask=0x4)

This drive is a Samsung 870 EVO SSD in good SMART standing, and I wasn't
aware of any reason it should be taking so long to standby. The issue is
intermittent, but I observed it sometimes taking 7 seconds to manually
standby. I assume this was interruption of background maintenance after
a power outage.

As a desktop user, I would prefer to wait the extra 2 seconds at suspend
to let the drive finish its business rather than drop the rails from
under it.

The change from 30 to 5 seconds was implicit when switching suspend
from START STOP UNIT to an internal command with no timeout table entry.
No reason was stated for the change.

Fixes: aa3998dbeb3a ("ata: libata-scsi: Disable scsi device manage_system_start_stop")
Cc: stable@vger.kernel.org
Signed-off-by: Matt Vollrath <tactii@gmail.com>
Assisted-by: Claude:claude-5-fable
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
drivers/ata/libata-eh.c
include/linux/libata.h

index 05df7ea6954a9da69584c4dad618215057d4edf4..46947ed0c657ca35b1b3fd0799fe1ba7cdeec293 100644 (file)
@@ -106,6 +106,12 @@ static const unsigned int ata_eh_flush_timeouts[] = {
        UINT_MAX,
 };
 
+static const unsigned int ata_eh_standby_timeouts[] = {
+       15000,  /* Some drives may be slow to standby */
+       /* but don't hold up a suspend too long waiting for them */
+       UINT_MAX,
+};
+
 static const unsigned int ata_eh_other_timeouts[] = {
         5000,  /* same rationale as identify timeout */
        10000,  /* ditto */
@@ -147,6 +153,8 @@ ata_eh_cmd_timeout_table[ATA_EH_CMD_TIMEOUT_TABLE_SIZE] = {
          .timeouts = ata_eh_other_timeouts, },
        { .commands = CMDS(ATA_CMD_FLUSH, ATA_CMD_FLUSH_EXT),
          .timeouts = ata_eh_flush_timeouts },
+       { .commands = CMDS(ATA_CMD_STANDBYNOW1),
+         .timeouts = ata_eh_standby_timeouts },
        { .commands = CMDS(ATA_CMD_VERIFY),
          .timeouts = ata_eh_reset_timeouts },
 };
index 96e626d6a7cab9d3cfcf6e272c7070a8271d31bd..6c0d385b2cde630a8eec10f2f1cfcfef2cc0a9d2 100644 (file)
@@ -425,7 +425,7 @@ enum {
        /* This should match the actual table size of
         * ata_eh_cmd_timeout_table in libata-eh.c.
         */
-       ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 8,
+       ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 9,
 
        /* User visible DMA mask for DMA control. DO NOT renumber. */
        ATA_DMA_MASK_ATA        = (1 << 0),     /* DMA on ATA Disk */