diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-09-28 17:19:20 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-10-11 14:44:25 -0400 |
commit | 3e082a910d217b2e7b186077ebf5a1126a68c62f (patch) | |
tree | b4ef4152b8ad0198283e36c74c990f38d90d27b7 /Documentation/kernel-parameters.txt | |
parent | 53a5fbdc2dff55161a206ed1a1385a8fa8055c34 (diff) |
[SCSI] Add ability to scan scsi busses asynchronously
Since it often takes around 20-30 seconds to scan a scsi bus, it's
highly advantageous to do this in parallel with other things. The bulk
of this patch is ensuring that devices don't change numbering, and that
all devices are discovered prior to trying to start init. For those
who build SCSI as modules, there's a new scsi_wait_scan module that will
ensure all bus scans are finished.
This patch only handles drivers which call scsi_scan_host. Fibre Channel,
SAS, SATA, USB and Firewire all need additional work.
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'Documentation/kernel-parameters.txt')
-rw-r--r-- | Documentation/kernel-parameters.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index ff571f9298e0..5a92ac085969 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -1410,6 +1410,11 @@ and is between 256 and 4096 characters. It is defined in the file | |||
1410 | 1410 | ||
1411 | scsi_logging= [SCSI] | 1411 | scsi_logging= [SCSI] |
1412 | 1412 | ||
1413 | scsi_mod.scan= [SCSI] sync (default) scans SCSI busses as they are | ||
1414 | discovered. async scans them in kernel threads, | ||
1415 | allowing boot to proceed. none ignores them, expecting | ||
1416 | user space to do the scan. | ||
1417 | |||
1413 | selinux [SELINUX] Disable or enable SELinux at boot time. | 1418 | selinux [SELINUX] Disable or enable SELinux at boot time. |
1414 | Format: { "0" | "1" } | 1419 | Format: { "0" | "1" } |
1415 | See security/selinux/Kconfig help text. | 1420 | See security/selinux/Kconfig help text. |