mirror of https://github.com/acidanthera/audk.git
Update IScsiCheckOpParams to get the declarative MaxRecvDataSegmentLength directly
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8018 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
0e27fefd6a
commit
28d19b0019
|
@ -1206,16 +1206,11 @@ IScsiCheckOpParams (
|
|||
Session->ImmediateData = (BOOLEAN) (Session->ImmediateData && (AsciiStrCmp (Value, "Yes") == 0));
|
||||
|
||||
//
|
||||
// MaxRecvDataSegmentLength, result function is Mininum.
|
||||
// MaxRecvDataSegmentLength is declarative.
|
||||
//
|
||||
Value = IScsiGetValueByKeyFromList (KeyValueList, ISCSI_KEY_MAX_RECV_DATA_SEGMENT_LENGTH);
|
||||
if (Value != NULL) {
|
||||
//
|
||||
// MaxRecvDataSegmentLength is declarative.
|
||||
//
|
||||
NumericValue = AsciiStrDecimalToUintn (Value);
|
||||
|
||||
Conn->MaxRecvDataSegmentLength = (UINT32) MIN (Conn->MaxRecvDataSegmentLength, NumericValue);
|
||||
Conn->MaxRecvDataSegmentLength = (UINT32) AsciiStrDecimalToUintn (Value);
|
||||
}
|
||||
//
|
||||
// MaxBurstLength, result funtion is Mininum.
|
||||
|
|
Loading…
Reference in New Issue