mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 18:59:37 +00: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
877fe3d28a
commit
e57817ab00
@ -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 New Issue
Block a user