StorPortSetBusDataByOffset function (storport.h)
The StorPortSetBusDataByOffset routine writes bus-specific configuration information.
Syntax
STORPORT_API ULONG StorPortSetBusDataByOffset(
[in] PVOID DeviceExtension,
[in] ULONG BusDataType,
[in] ULONG SystemIoBusNumber,
[in] ULONG SlotNumber,
[in] PVOID Buffer,
[in] ULONG Offset,
[in] ULONG Length
);
Parameters
[in] DeviceExtension
Pointer to the miniport driver's per-HBA storage area.
[in] BusDataType
Contains a value of type BUS_DATA_TYPE that specifies the type of the bus for which configuration information is to be written. Currently, its value can be PCIConfiguration. However, additional types of standardized, dynamically configurable buses will be supported in future. The upper bound on the bus types supported is always MaximumBusDataType.
[in] SystemIoBusNumber
Specifies the system-assigned number of the I/O bus on which the HBA is connected. The miniport driver's HwStorFindAdapter routine obtains this value from the input PORT_CONFIGURATION_INFORMATIONSystemIoBusNumber member.
[in] SlotNumber
Indicates the logical slot number of the HBA.
When PCIConfiguration is specified as the BusDataType, this parameter must be specified as a PCI_SLOT_NUMBER-type value.
[in] Buffer
Pointer to a caller-supplied storage area with configuration information specific to BusDataType.
When PCIConfiguration is specified, the buffer contains some or all of the PCI_COMMON_CONFIG information for the given SlotNumber. The specified Offset and Length determine how much information is supplied.
[in] Offset
Specifies the byte offset within the PCI_COMMON_CONFIG structure at which the caller-supplied configuration values begin. A miniport driver can use PCI_COMMON_HDR_LENGTH to specify the offset of the device-specific area in PCI_COMMON_CONFIG.
[in] Length
Indicates the length, in bytes, of the maximum amount of data to return.
Return value
StorPortSetBusDataByOffset returns the number of bytes of configuration data written.
Requirements
Requirement | Value |
---|---|
Target Platform | Universal |
Header | storport.h (include Storport.h) |
Library | Storport.lib |