mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-19 03:31:26 +00:00
- In scst_local new experimental compile-time option to force direct processing added - Attempt in SCST structures to separate read-mostly from read-write data to decrease cache ping-pong between CPUs - In scst_vdisk new module parameter num_threads added to specify a number of threads for each vdisk/vcdrom. Default is 5. - Debug logging for failed digests in iSCSI-SCST improved - Docs updates/cleanups git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@635 d57e44dd-8a1f-0410-8b47-8ef2f437770f
23 lines
765 B
Plaintext
23 lines
765 B
Plaintext
config SCST_LOCAL
|
|
tristate "SCST Local driver"
|
|
depends on SCST
|
|
---help---
|
|
This module provides a LLD SCSI driver that connects to
|
|
the SCST target mode subsystem in a loop-back manner.
|
|
It allows you to test target-mode device-handlers locally.
|
|
You will need the SCST subsystem as well.
|
|
|
|
If unsure whether you really want or need this, say N.
|
|
|
|
config SCST_LOCAL_FORCE_DIRECT_PROCESSING
|
|
bool "Force local processing"
|
|
depends on SCST_LOCAL
|
|
help
|
|
This experimental option forces scst_local to make SCST process
|
|
SCSI commands in the same context, in which they was submitted.
|
|
Otherwise, they will be processed in SCST threads. Setting this
|
|
option to "Y" will give some performance increase, but might be
|
|
unsafe.
|
|
|
|
If unsure, say "N".
|