mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04:00
Put devices into sleep mode (ie spin down) on detach.
This commit is contained in:
parent
f27b8b8ad4
commit
c4c8a3e041
1 changed files with 2 additions and 0 deletions
|
|
@ -197,12 +197,14 @@ ata_detach(device_t dev)
|
|||
if (ch->device[MASTER].param) {
|
||||
if (ch->device[MASTER].param->support.command2 & ATA_SUPPORT_FLUSHCACHE)
|
||||
ata_controlcmd(&ch->device[MASTER], ATA_FLUSHCACHE, 0, 0, 0);
|
||||
ata_controlcmd(&ch->device[MASTER], ATA_SLEEP, 0, 0, 0);
|
||||
free(ch->device[MASTER].param, M_ATA);
|
||||
ch->device[MASTER].param = NULL;
|
||||
}
|
||||
if (ch->device[SLAVE].param) {
|
||||
if (ch->device[SLAVE].param->support.command2 & ATA_SUPPORT_FLUSHCACHE)
|
||||
ata_controlcmd(&ch->device[SLAVE], ATA_FLUSHCACHE, 0, 0, 0);
|
||||
ata_controlcmd(&ch->device[SLAVE], ATA_SLEEP, 0, 0, 0);
|
||||
free(ch->device[SLAVE].param, M_ATA);
|
||||
ch->device[SLAVE].param = NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue