mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
ahci(4) and siis(4) are ready to process the unmapped i/o requests
Sponsored by: The FreeBSD Foundation Tested by: pho Submitted by: bf (siis patch)
This commit is contained in:
parent
59a01b70af
commit
129c6621f7
2 changed files with 2 additions and 2 deletions
|
|
@ -2903,7 +2903,7 @@ ahciaction(struct cam_sim *sim, union ccb *ccb)
|
|||
if (ch->caps & AHCI_CAP_SPM)
|
||||
cpi->hba_inquiry |= PI_SATAPM;
|
||||
cpi->target_sprt = 0;
|
||||
cpi->hba_misc = PIM_SEQSCAN;
|
||||
cpi->hba_misc = PIM_SEQSCAN | PIM_UNMAPPED;
|
||||
cpi->hba_eng_cnt = 0;
|
||||
if (ch->caps & AHCI_CAP_SPM)
|
||||
cpi->max_target = 15;
|
||||
|
|
|
|||
|
|
@ -1939,7 +1939,7 @@ siisaction(struct cam_sim *sim, union ccb *ccb)
|
|||
cpi->hba_inquiry = PI_SDTR_ABLE | PI_TAG_ABLE;
|
||||
cpi->hba_inquiry |= PI_SATAPM;
|
||||
cpi->target_sprt = 0;
|
||||
cpi->hba_misc = PIM_SEQSCAN;
|
||||
cpi->hba_misc = PIM_SEQSCAN | PIM_UNMAPPED;
|
||||
cpi->hba_eng_cnt = 0;
|
||||
cpi->max_target = 15;
|
||||
cpi->max_lun = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue