diff options
Diffstat (limited to 'drivers/scsi/scsi.c')
-rw-r--r-- | drivers/scsi/scsi.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index c4d632c27a3e..88d46fe6bf98 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
@@ -91,6 +91,15 @@ EXPORT_SYMBOL(scsi_logging_level); | |||
91 | ASYNC_DOMAIN(scsi_sd_probe_domain); | 91 | ASYNC_DOMAIN(scsi_sd_probe_domain); |
92 | EXPORT_SYMBOL(scsi_sd_probe_domain); | 92 | EXPORT_SYMBOL(scsi_sd_probe_domain); |
93 | 93 | ||
94 | /* | ||
95 | * Separate domain (from scsi_sd_probe_domain) to maximize the benefit of | ||
96 | * asynchronous system resume operations. It is marked 'exclusive' to avoid | ||
97 | * being included in the async_synchronize_full() that is invoked by | ||
98 | * dpm_resume() | ||
99 | */ | ||
100 | ASYNC_DOMAIN_EXCLUSIVE(scsi_sd_pm_domain); | ||
101 | EXPORT_SYMBOL(scsi_sd_pm_domain); | ||
102 | |||
94 | /* NB: These are exposed through /proc/scsi/scsi and form part of the ABI. | 103 | /* NB: These are exposed through /proc/scsi/scsi and form part of the ABI. |
95 | * You may not alter any existing entry (although adding new ones is | 104 | * You may not alter any existing entry (although adding new ones is |
96 | * encouraged once assigned by ANSI/INCITS T10 | 105 | * encouraged once assigned by ANSI/INCITS T10 |