INFO: Restriction on the Number of Concurrent I/O Requests Setting (240314)



The information in this article applies to:

  • Microsoft Windows 2000 Server
  • Microsoft Windows 2000 Advanced Server
  • Microsoft Windows 2000 Datacenter Server
  • Microsoft Windows NT Workstation 4.0
  • Microsoft Windows NT Server 4.0
  • Microsoft Windows NT 4.0 Driver Development Kit (DDK)

This article was previously published under Q240314

SUMMARY

The registry subkey to specify the maximum number of outstanding requests on a bus is:
HKEY_LOCAL_MACHINE\ 
  System\ 
    CurrentControlSet\ 
      Services\ 
        DriverName\ 
          Parameters\ 
            DeviceX\ 
              NumberOfRequests
				
DriverName is the name of the miniport driver, such as AIC78xx, and X (from DeviceX) is the bus number assigned at initialization. This subkey is a REG_DWORD between 16 and 255. Use this adjustment sparingly because the per-request storage allocations consume nonpaged memory.

The Windows NT 4 Device Driver Kit (DDK) documentation stated that the number of outstanding requests (NumberOfRequests) could be between 16 and 512. However, for optimum performance, the setting should be between 16 and 255. Values above 255 will consume additional nonpaged memory and will not produce more concurrent requests than the 255 registry setting.

The Windows NT 4 Scsiport.sys driver uses a byte tag value to identify I/O requests sent to each SCSI miniport. Because the tag value is limited to a byte, the number of concurrent requests is also limited to a byte value.

Modification Type:MajorLast Reviewed:10/10/2002
Keywords:kbDSupport kbHardware kbinfo kbStorageDev KB240314