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:
jji4 2009-04-03 06:40:25 +00:00
parent 0e27fefd6a
commit 28d19b0019
1 changed files with 2 additions and 7 deletions

View File

@ -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.